public:
AutoARIMA(
array<int>^ times,
array<double>^ x
)
new :
times : int[] *
x : float[] ->AutoARIMA
Parameters
times
Type: SystemInt32
An int array of length nObs,
where nObs is the number of observed time
series values, containing the time points
at which
the time series was observed. It is required that
are in
strictly increasing order. Times for missing values are
identified as non-incremental gaps in this series. A gap
of missing values in x is assumed if the
difference between two consecutive values is greater than
1, i.e. . The difference
is the number of missing values in the gap.
x
Type: SystemDouble
A double array containing the observations
at the times given in array times.
This series can contain outliers and missing
observations.