Click or drag to resize

ARModelT Class

Represents an autoregressive model AR(p).
Inheritance Hierarchy
SystemObject
  Austra.LibraryARModelT
    Austra.LibraryARSModel
    Austra.LibraryARVModel

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
Syntax
C#
public abstract class ARModel<T> : IFormattable

Type Parameters

T
The type of the data source.

The ARModelT type exposes the following members.

Properties
 NameDescription
Public propertyCoefficientsInferred coefficients of the autoregressive model.
Public propertyCorrelationsGets the correlations.
Public propertyDegreesThe order of the autoregressive model, i.e. the number of degrees.
Public propertyMatrixThe correlation matrix of the autoregressive model.
Public propertyOriginalGets the data source.
Public propertyPredictionPredicted samples.
Public propertyR2Explained variance versus total variance.
Public propertyResidualSumSquaresGets the residual sum of squares.
Public propertyTotalSumSquaresGets the total sum of squares.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringGets the string representation of the autoregressive model.
(Overrides ObjectToString)
Public methodToString(String, IFormatProvider)Gets the string representation of the autoregressive model.
Top
See Also