Solves the transposed system of linear equations for the specified
right-hand side dense vector and optionally
overwrites the right-hand side with the solution.
Namespace: Extreme.Mathematics.LinearAlgebra.IterativeSolvers.PreconditionersAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public override DenseVector SolveTranspose(
DenseVector rightHandSide,
bool overwrite
)
Public Overrides Function SolveTranspose (
rightHandSide As DenseVector,
overwrite As Boolean
) As DenseVector
public:
virtual DenseVector^ SolveTranspose(
DenseVector^ rightHandSide,
bool overwrite
) override
abstract SolveTranspose :
rightHandSide : DenseVector *
overwrite : bool -> DenseVector
override SolveTranspose :
rightHandSide : DenseVector *
overwrite : bool -> DenseVector
Parameters
- rightHandSide
- Type: Extreme.Mathematics.LinearAlgebraDenseVector
A Vector. - overwrite
- Type: SystemBoolean
If ,
a new Vector instance containing the solution
to the system of equations is returned. If ,
the vector rightHandSide is overwritten by
the solution.
Return Value
Type:
DenseVectorA
DenseVector containing the solution
of the system of simultaneous linear equations.
Numerical Libraries
Supported in: 5.x, 4.x
Reference