Constructs a DoubleComplexCholeskyLeastSq instance from the given matrix.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleComplexCholeskyLeastSq(
	DoubleComplexMatrix A
)
Visual Basic (Declaration)
Public Sub New ( _
	A As DoubleComplexMatrix _
)
Visual C++
public:
DoubleComplexCholeskyLeastSq(
	DoubleComplexMatrix^ A
)

Remarks

For the Cholesky least squares method to succeed, matrix A must have full rank.

See Also