Click or drag to resize
KalmanFilter Constructor
Constructor for KalmanFilter.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public KalmanFilter(
	double[] b,
	double[,] covb,
	int rank,
	double sumOfSquaress,
	double logDeterminant
)

Parameters

b
Type: SystemDouble
A double array containing the estimated state vector.
covb
Type: SystemDouble
A double matrix of size b.Length by b.Length such that covb * \sigma^2 is the mean squared error matrix for b.
rank
Type: SystemInt32
An int scalar containing the rank of the variance-covariance matrix for all the observations.
sumOfSquaress
Type: SystemDouble
A double scalar containing the generalized sum of squares.
logDeterminant
Type: SystemDouble
A double scalar containing the natural log of the product of the nonzero eigenvalues of P where P * \sigma^2 is the variance-covariance matrix of the observations.
Exceptions
ExceptionCondition
ArgumentException is thrown if the dimensions of b, and covb are not consistent
Remarks
b is the estimated state vector at time k given the observations through time k-1.
See Also