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