WaveformValues

Returns the list of waveform values of the NexVar object representing waveform variable.

Syntax

var.WaveformValues()

Return

Returns the list of waveform values of the NexVar object representing waveform variable.

Note

Python only.

Examples

Python

import nex
doc = nex.GetActiveDocument()
waveforms = doc['sig001a_wf'].WaveformValues()
#print the values of the first waveform
print(waveforms[0])