 | FloatCholeskyLeastSqFactor Method |
Factors a given matrix so that it may be used to solve least squares problems.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Factor(
FloatMatrix A
)
Public Sub Factor (
A As FloatMatrix
)
public:
void Factor(
FloatMatrix^ A
)
member Factor :
A : FloatMatrix -> unit
Parameters
- A
- Type: CenterSpace.NMath.CoreFloatMatrix
A matrix.
RemarksFor the Cholesky least squares method to succeed, the matrix
A must have full rank.
See Also