Search found 169 matches

by Waveworks
Tue Mar 28, 2023 10:04 am
Forum: Feedback
Topic: Logarithmic scale
Replies: 1
Views: 9649

Re: Logarithmic scale

Hello, Thank you for the suggestion - that makes sense. I'm adding it to the list of feature requests. For now you can use a formula like y_log = log(y) to visualize the logarithm of y . I understand it's not exactly what you want since it won't show the logarithmic scale and grid, but hopefully it ...
by Waveworks
Fri Feb 10, 2023 4:21 pm
Forum: Support
Topic: No longer auto reload externally changed files
Replies: 1
Views: 10155

Re: No longer auto reload externally changed files

Hello, sorry for the slow reply. Can you go to File → Preferences and check that "Auto reload externally changed files" is set to "Immediately when detected"?
by Waveworks
Sun Dec 04, 2022 11:48 am
Forum: Support
Topic: Start Flow CSV View from command line
Replies: 3
Views: 12867

Re: Start Flow CSV View from command line

Ah ok, I see the problem and I understand that you want to minimize the hassle for your users. I'm afraid this use case is not really supported. I guess it would work better if Flow could be installed with a regular installer, like with Notepad++, but a regular installer would cost me quite some tim...
by Waveworks
Sat Dec 03, 2022 2:41 pm
Forum: Support
Topic: Start Flow CSV View from command line
Replies: 3
Views: 12867

Re: Start Flow CSV View from command line

Hello Branko, I checked on my computer, and the path is exactly the same here, so I think the chances are good that it actually works on all computers. If not, maybe you can find some tips from here: https://superuser.com/questions/1543363/how-to-open-a-windows-store-app-from-command-line Hope this ...
by Waveworks
Tue Nov 15, 2022 5:25 pm
Forum: Feedback
Topic: Auto-scale to min/max in current window?
Replies: 3
Views: 15760

Re: Auto-scale to min/max in current window?

Hi, ok thanks for letting me know! Yes I have also seen this feature in competing products and it's really handy. It's actually already on the top of the list of new features to be implemented, so it will be included in the next version.

Best regards,
Gustaf
by Waveworks
Tue Nov 15, 2022 5:20 pm
Forum: Feedback
Topic: Column type is recongnized incorrectly
Replies: 3
Views: 12889

Re: Column type is recongnized incorrectly

Thank you for taking the time to report this problem! I will fix it for the next version. If you have Flow CSV Editor (the paid version), you can change the type manually by right-clicking the variable, select Redefine... and enter inVoltageIn1_mean_float32 = float(inVoltageIn1_mean_float32) . If no...
by Waveworks
Sun Nov 13, 2022 3:43 pm
Forum: Support
Topic: Difference between X and Y is greater than Z - formula.
Replies: 3
Views: 12946

Re: Difference between X and Y is greater than Z - formula.

An addition to my response: If you mean the absolute difference, use the abs function: b = abs(X - Y) > Z.
by Waveworks
Sun Nov 13, 2022 3:30 pm
Forum: Support
Topic: Difference between X and Y is greater than Z - formula.
Replies: 3
Views: 12946

Re: Difference between X and Y is greater than Z - formula.

Thank you for your kind words, glad you find it useful! The boolean expression for that would be simply X - Y > Z, or as a formula, b = X - Y > Z, which would give you a boolean variable b that's 1 for samples fulfilling the condition and 0 otherwise. Hope that helps!

Best regards,
Gustaf
by Waveworks
Thu Aug 25, 2022 10:07 am
Forum: Announcements
Topic: Version 1.1.5 released
Replies: 0
Views: 28003

Version 1.1.5 released

Flow CSV Viewer and Editor 1.1.5 have been released. This is a maintenance release that fixes several minor problems that were found since the last release. No new features have been added. See the What's New section in the Help for details. Update instructions: Microsoft Store users should normally...
by Waveworks
Tue Aug 02, 2022 4:00 pm
Forum: Support
Topic: Date time format
Replies: 1
Views: 11538

Re: Date time format

Hello, there are actually no date or time types in Flow, and no date or time specific functions or features either; hence there is no such parsing at all. There is a little information about this in the Types section of the Formulas and Expressions chapter in the Help documentation. What would you h...