Returns all time points at which the original series was observed, including values for times with missing values in x.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public int[] GetCompleteTimes()
Visual Basic (Declaration)
Public Function GetCompleteTimes As Integer()
Visual C++
public:
array<int>^ GetCompleteTimes()

Return Value

An int array of length times[times.Length-1]-times[0]+1 containing the times at which the time series (including missing values) was observed.

Remarks

One of the Compute methods must be called before invoking this method. Otherwise, an InvalidOperationException exception is thrown.

See Also