LinearOperator<T>.SolveTransposeInto(Vector<T>, Vector<T>) Method

Solves a system of equations defined by the matrix and the specified right-hand side.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> SolveTransposeInto(
	Vector<T> rightHandSide,
	Vector<T> result
)

Parameters

rightHandSide  Vector<T>
A vector that contains the right-hand side.
result  Vector<T>
The vector that is to hold the result. May be null.

Return Value

Vector<T>

The solution of the system of equations defined by the (conjugate) transpose of this instance and rightHandSide.

Exceptions

ArgumentNullExceptionrightHandSide is null.

See Also