.NET Matrix Library
Solve(CMatrix) Method
See Also  Send Feedback



rhnds
CMatrix object that contains the multiple right hand vectors as columns.
Solves a system of linear equations for multiple right hands.

Syntax

Visual Basic (Declaration) 
Public Overloads Function Solve( _
   ByVal rhnds As CMatrix _
) As CMatrix
Visual Basic (Usage)Copy Code
Dim instance As CSparseSolver
Dim rhnds As CMatrix
Dim value As CMatrix
 
value = instance.Solve(rhnds)
C# 
public CMatrix Solve( 
   CMatrix rhnds
)
C++/CLI 
public:
CMatrix^ Solve( 
   CMatrix^ rhnds
) 

Parameters

rhnds
CMatrix object that contains the multiple right hand vectors as columns.

Return Value

CMatrix object that contains the solution of the system of linear equations.

Requirements

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

See Also

.NET Matrix Library