LinearOperator<T>.SolveTranspose(Matrix<T>) Method

Solves the transposed system of linear equations for the specified right-hand side matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> SolveTranspose(
	Matrix<T> rightHandSide
)

Parameters

rightHandSide  Matrix<T>
A Matrix<T>.

Return Value

Matrix<T>
A DenseMatrix<T> containing the solution of the system of simultaneous linear equations.

Exceptions

ArgumentNullExceptionrightHandSide is null.
DimensionMismatchExceptionThe length of rightHandSide does not equal the number of rows of the matrix underlying this system of equations.

-or-

The matrix is not square.

MatrixSingularExceptionThe Matrix<T> underlying this system of equations is singular and does not have an inverse.
DimensionMismatchException

See Also