|  | DoubleSymFact(DoubleSymmetricMatrix) Constructor | 
            Constructs a DoubleSymFact instance by factoring the given matrix.
            By default the condition number for the matrix will not be computed
            and will not be available from the ConditionNumber method.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleSymFact(
	DoubleSymmetricMatrix A
)
Public Sub New ( 
	A As DoubleSymmetricMatrix
)
public:
DoubleSymFact(
	DoubleSymmetricMatrix^ A
)
new : 
        A : DoubleSymmetricMatrix -> DoubleSymFactParameters
- A  DoubleSymmetricMatrix
- The matrix to factor. The matrix is assumed to be symmetric.
 Remarks
RemarksOnly the upper triangular part of the matrix A
            is referenced.
 See Also
See Also