Click or drag to resize

AbstractLSEstimate Method (Vector, Vector)

Estimate regresand value, using computed regression parameters and regressors value. Use this this method for single observation.

Namespace:  FinMath.LeastSquares
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public static double Estimate(
	Vector parameters,
	Vector regressorsValues
)

Parameters

parameters
Type: FinMath.LinearAlgebraVector
Previously computed Least Squares parameters.
regressorsValues
Type: FinMath.LinearAlgebraVector
Regressors value vector.

Return Value

Type: Double
Estimated regressand value.
See Also