SelectEven
Creates the new event containing even (2nd, 4th, etc.) timestamps of the specified variable.
Syntax
SelectEven(var)
Parameters
Parameter |
Type |
Description |
---|---|---|
var |
variableReference |
Reference to the variable |
Return
The reference to the new event containing even (2nd, 4th, etc.) timestamps of the specified variable.
Examples
Python
import nex
doc = nex.GetActiveDocument()
doc["evenEvents04"] = nex.SelectEven(doc["Event04"])
NexScript
doc = GetActiveDocument()
doc["evenEvents04"] = SelectEven(doc["Event04"])