IntervalEnds

For an interval variable, returns the interval end values in seconds. This method is valid only for interval variables.

Syntax

IntervalEnds()

Parameters

None.

Matlab Example

nex = actxserver('NeuroExplorer.Application');
doc = nex.OpenDocument('C:\Data\MyDataFile.nex');
% get the first interval variable
int1= doc.Interval(1);
% get all the interval ends
int1Ends = int1.IntervalEnds();