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



rhnds
A CVector object containing the right hand vector.
Solves a system of linear equations for a single right hand vector.

Syntax

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

Parameters

rhnds
A CVector object containing the right hand vector.

Return Value

A CVector object containing 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