How can I extract specific measurement data from a TimeWave?
zek
How can I extract specific measurement data from a TimeWave using a procedure?
I have a TimeWave and a wave containing measurement data. I need to extract the measurement data at specific times, which are listed in a separate wave. What is the best way to achieve this using a procedure?
Thanks for your help.
You should probably use FindLevel
DisplayHelpTopic "FindLevel"
February 6, 2024 at 05:47 am - Permalink
Or perhaps BinarySearchInterp(timewave, time)
February 6, 2024 at 05:52 am - Permalink
wFoundValues = wValue[BinarySearchInterp(wTime, wSearch)]
February 6, 2024 at 06:01 am - Permalink