Click or drag to resize
LinearRegressionUpdate Method (Double, Double)
Updates the regression object with a new set of observations.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public void Update(
	double[,] x,
	double[] y
)

Parameters

x
Type: SystemDouble
A double matrix containing the independent (explanatory) variables.
y
Type: SystemDouble
A double array containing the dependent (response) variables.
Remarks
The number of rows in x must equal y.Length and the number of columns must be equal to the number of variables set in the constructor.
See Also