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



rhnds
Matrix 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 Matrix _
) As Matrix
Visual Basic (Usage)Copy Code
Dim instance As SparseSolver
Dim rhnds As Matrix
Dim value As Matrix
 
value = instance.Solve(rhnds)
C# 
public Matrix Solve( 
   Matrix rhnds
)
C++/CLI 
public:
Matrix^ Solve( 
   Matrix^ rhnds
) 

Parameters

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

Return Value

Matrix 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