ContinuousValues
Returns the list of all continuous values of the NexVar
object representing continuous variable.
Syntax
var.ContinuousValues()
Return
Returns the list of all continuous values of the NexVar
object representing continuous variable. The values are in milliVolts.
Note
Python only.
Examples
Python
import nex
doc = nex.GetActiveDocument()
values = doc['FP01'].ContinuousValues()
# print first 10 values
print(values[0:10])