
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public double[] GetTransformedTimeSeries() |
Visual Basic (Declaration) |
---|
Public Function GetTransformedTimeSeries As Double() |
Visual C++ |
---|
public: array<double>^ GetTransformedTimeSeries() |
Return Value
A double array of length z.Length or z.Length-NLost, depending upon the setting for the Exclude property.
Remarks
is an array of length z.Length
or z.Length-NLost containing the optimum seasonally
adjusted, autoregressive series, where NLost is the first
lost observations in this series that are dropped due to
differencing. If the missing values are not dropped the first
NLost values of
will be set to
Double.NaN. The NLost property can be used to obtain the number of
lost observations.
The seasonal adjustment is done by selecting optimum values for
,
and p in the AR model, where m is number of differences,
m=sIinitial.GetLength(1) :




![E[a_t]=0](eqn/eqn_2227.png)
![\mbox{Var}[a_t]=
\sigma^2](eqn/eqn_2228.png)




Exceptions
Exception | Condition |
---|---|
Imsl.Stat..::.MatrixSingularException | is thrown if the input matrix is singular. |
Imsl.Stat..::.TooManyCallsException | is thrown if the number of calls to the function has exceeded the maximum number of iterations times the number of moving average (MA) parameters + 1. |
Imsl.Stat..::.IncreaseErrRelException | is thrown if the bound for the relative error is too small. |
Imsl.Stat..::.NewInitialGuessException | is thrown if the iteration has not made good progress. |
Imsl.Stat..::.IllConditionedException | is thrown if the problem is ill-conditioned. |
Imsl.Stat..::.TooManyIterationsException | is thrown if the maximum number of iterations is exceeded. |
Imsl.Stat..::.TooManyFunctionEvaluationsException | is thrown if the maximum number of function evaluations is exceeded. |
Imsl.Stat..::.TooManyJacobianEvalException | is thrown if the maximum number of Jacobian evaluations is exceeded. |
Imsl.Stat..::.NonStationaryException | is thrown if the final maximum likelihood estimates for the time series are nonstationary. |
Imsl.Stat..::.SingularTriangularMatrixException | is thrown if the input triangular matrix is singular. |