ARMAEstimateMissing Constructor |
Constructor for ARMAEstimateMissing.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public ARMAEstimateMissing(
int[] tpoints,
double[] z
)
Public Sub New (
tpoints As Integer(),
z As Double()
)
public:
ARMAEstimateMissing(
array<int>^ tpoints,
array<double>^ z
)
new :
tpoints : int[] *
z : float[] -> ARMAEstimateMissing
Parameters
- tpoints
- Type: SystemInt32
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.
. 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: SystemDouble
a double array containing the values for the time series
observed at the times given in the vector tpoints.
See Also