ARSeasonalFit Constructor |
Constructor for ARSeasonalFit.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public ARSeasonalFit(
int maxlag,
int[,] SInitial,
double[] z
)
Public Sub New (
maxlag As Integer,
SInitial As Integer(,),
z As Double()
)
public:
ARSeasonalFit(
int maxlag,
array<int,2>^ SInitial,
array<double>^ z
)
new :
maxlag : int *
SInitial : int[,] *
z : float[] -> ARSeasonalFit
Parameters
- maxlag
- Type: SystemInt32
An int scalar specifying the maximum lag
allowed when fitting an AR(p) model.
- SInitial
- Type: SystemInt32
An int matrix where each row represents seasonal differences to
evaluate. The number of columns in SInitial represent the
number of differences to perform. All values of SInitial
must be greater than zero.
- z
- Type: SystemDouble
A double array containing the time series.
See Also