LinearRegressionUpdate Method (Double, Double) |
Updates the regression object with a new observation.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public void Update(
double[] x,
double y
)
Public Sub Update (
x As Double(),
y As Double
)
public:
void Update(
array<double>^ x,
double y
)
member Update :
x : float[] *
y : float -> unit
Parameters
- x
- Type: SystemDouble
A double array containing the independent (explanatory)
variables.
- y
- Type: SystemDouble
A double representing the dependent (response) variable.
Remarks x.Length must be equal to the number of variables set in the
constructor.
See Also