07-08-2017 10:05 PM
I have the following in my script file
Call ChnPeakFind("ElapsedTime","CFC60_High_Lat","Min_Lat_Time","Min_lat",1,"Min.Peaks","amplitude")
How do I make the data in "Min_Lat_Time" available for use as an index in another command?
07-10-2017 07:19 PM
You can get specific values from the resulting "Min_Lat_Time" channel by using ChD
http://zone.ni.com/reference/en-XX/help/370858M-01/varoff/chd/
Also, you can perform an operation on the whole channel as in the following:
Call ChnPeakFind("[1]/Time","[1]/Speed","/Peak5","/PeakY",1,"Max.Peaks","Amplitude")
Call ChnLinScale("Peak5","/LinearScaled",1,10)