MultipleRegressionDirectMethodT(MatrixT, VectorT, DirectRegressionMethod) Method |
Find the model parameters β such that X*β with predictor X becomes as close to response Y as possible, with least squares residuals.
Namespace: Altaxo.Calc.LinearRegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static Vector<T> DirectMethod<T>(
Matrix<T> x,
Vector<T> y,
DirectRegressionMethod method = DirectRegressionMethod.NormalEquations
)
where T : struct, new(), IEquatable<T>, IFormattable
Parameters
- x MatrixT
- Predictor matrix X
- y VectorT
- Response vector Y
- method DirectRegressionMethod (Optional)
- The direct method to be used to compute the regression.
Type Parameters
- T
- The type of the predictor and response values.
Return Value
VectorTBest fitting vector for model parameters β
See Also