SamplingRate
Returns the sampling rate of the NexVar object representing continuous channel.
Syntax
var.SamplingRate()
Parameters
None.
Return
Returns the sampling rate (in Hertz) of the NexVar object representing continuous channel.
Note
Python only.
Examples
Python
import nex
doc = nex.GetActiveDocument()
var = nex.GetVar(doc, 1, 'continuous')
print(var.SamplingRate())