  | DoubleHermitianPDFactCholeskyFactor Property | 
            Gets the Cholesky factorization of the source matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleComplexUpperTriMatrix CholeskyFactor { get; }Public ReadOnly Property CholeskyFactor As DoubleComplexUpperTriMatrix
	Get
public:
property DoubleComplexUpperTriMatrix^ CholeskyFactor {
	DoubleComplexUpperTriMatrix^ get ();
}member CholeskyFactor : DoubleComplexUpperTriMatrix with get
Property Value
DoubleComplexUpperTriMatrix
Remarks
            If A is the factored matrix, then the Cholesky factorization of A is
            A = UU'
            where U is upper triangular and U' is the conjugate transpose of U.
            This property gets the Cholesky factor U.
            
See Also