The trace is plotted by a XY pair on a graph. I know how to program to get the Y value, but is there any simple command to get the Yvalue for a given X value?
Thanks, Wentao
I don't know if it's the simplest way, but how about:
FindLevel Xwave, Xvalue Yvalue = Ywave(V_LevelX)
That's useful. It's seems that there was no such simple command to realize it like Yvalue=Ywave(xValue).
Anyway, the given command is simple enough.
Thanks a lot.
Wentao
Back to top
Joined: 2010-05-14
Location: Germany
I don't know if it's the simplest way, but how about:
(Note the round brackets)
Or use BinarySearch if you know an exact X value.
Joined: 2009-07-09
Location: United States
That's useful. It's seems that there was no such simple command to realize it like Yvalue=Ywave(xValue).
Anyway, the given command is simple enough.
Thanks a lot.
Wentao
(Note the round brackets)
Or use BinarySearch if you know an exact X value.