WaveformValues

For waveform variable, returns all the waveform values in milliVolts. The values are returned in a two-dimensional array. Each row of the array represents one waveform.

This method is valid only for waveform variables.

Syntax

WaveformValues()

Parameters

None.

Matlab Example

nex = actxserver('NeuroExplorer.Application');
doc = nex.OpenDocument('C:\Data\MyDataFile.nex');
% get the first waveform variable
wave1= doc.Wave(1);
% get all the values
wave1Values = wave1.WaveformValues();