.NET Matrix Library
Inverse Method
See Also  Send Feedback



Returns the inverse of a complex Hermitian positive-definite matrix using its Cholesky factorization.

Syntax

Visual Basic (Declaration) 
Public Function Inverse() As CMatrix
Visual Basic (Usage)Copy Code
Dim instance As CCholesky
Dim value As CMatrix
 
value = instance.Inverse()
C# 
public CMatrix Inverse()
C++/CLI 
public:
CMatrix^ Inverse(); 

Return Value

A CMatrix object containing the inverse of the factored matrix.

Remarks

This method will return a null reference (Nothing in Visual Basic) if the Cholesky factorization could not be completed (if Succeeded property returns false).

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library