SelectOdd
Creates the new event containing the odd (1st, 3rd, etc.) timestamps of the specified variable.
Syntax
SelectOdd(var)
Parameters
Parameter |
Type |
Description |
---|---|---|
var |
variableReference |
Reference to the variable |
Return
The reference to the new event containing the odd (1st, 3rd, etc.) timestamps of the specified variable.
Examples
Python
import nex
doc = nex.GetActiveDocument()
doc["oddEvents04"] = nex.SelectOdd(doc["Event04"])
NexScript
doc = GetActiveDocument()
doc["oddEvents04"] = SelectOdd(doc["Event04"])