Constructor for ARMAEstimateMissing.

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

Syntax

C#
public ARMAEstimateMissing(
	int[] tpoints,
	double[] z
)
Visual Basic (Declaration)
Public Sub New ( _
	tpoints As Integer(), _
	z As Double() _
)
Visual C++
public:
ARMAEstimateMissing(
	array<int>^ tpoints, 
	array<double>^ z
)

Parameters

tpoints
Type: array< System..::.Int32 >[]()[]
An int array containing the times at which the series values were observed. The values must be strictly increasing. Times for missing values are identified as non-incremental gaps in this series. A gap of missing values in z is assumed when the difference between two consecutive values is greater than one, i.e. t_{i+1}-t_i>1. The difference is the number of missing values in the gap. The series can have multiple gaps with missing values, but any one gap can have no more than three missing values.
z
Type: array< System..::.Double >[]()[]
a double array containing the values for the time series observed at the times given in the vector tpoints.

See Also