I've been looking for software like this for a long time - it's perfect. A job well done.
I would like to ask about the formula that looks for values in the graph if the difference between X and Y is greater than Z.
Difference between X and Y is greater than Z - formula.
-
dudo02
- Posts: 4
- Joined: Sun Nov 13, 2022 12:50 pm
-
Waveworks
- Posts: 188
- Joined: Thu Sep 05, 2019 1:05 pm
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
Best regards,
Gustaf
-
Waveworks
- Posts: 188
- Joined: Thu Sep 05, 2019 1:05 pm
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.
-
dudo02
- Posts: 4
- Joined: Sun Nov 13, 2022 12:50 pm
Re: Difference between X and Y is greater than Z - formula.
Thank you very much.