Constructs a DoubleSymFact instance by factoring the given matrix.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Matrix..::.DoubleSymmetricMatrix
The matrix to factor. The matrix is assumed to be symmetric.

Remarks

Only the upper triangular part of the matrix A is referenced.

See Also