get subset value


Recommended Posts

well, doing:

gettime(max(mychannel))

will return the time of that maximum point. To get the index, you'd have to use the search function:

search(mychannel.time == gettime(max(mychannel)))

For performance reasons, if you are using the same max() more than once you should probably store max(mychannel) in a local variable and then call gettime on that variable.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.