Solves a system of equations defined by the matrix and the specified right-hand side.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> SolveInto(
Vector<T> rightHandSide,
Vector<T> result
)
Public Function SolveInto (
rightHandSide As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
public:
Vector<T>^ SolveInto(
Vector<T>^ rightHandSide,
Vector<T>^ result
)
member SolveInto :
rightHandSide : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- rightHandSide
- Type: Extreme.MathematicsVectorT
A vector that contains the right-hand side. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTThe solution of the system of equations defined by this instance
and rightHandSide.
Reference