DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

Pulling data out of Chnpeakfind

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?

0 Kudos
Message 1 of 2
(2,461 Views)

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)

0 Kudos
Message 2 of 2
(2,373 Views)