LinearOperator<T>.SolveInto(TransposeOperation, Matrix<T>, Matrix<T>) Method

Solves a system of equations defined by the matrix and multiple right-hand sides.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Matrix<T> SolveInto(
	TransposeOperation operation,
	Matrix<T> rightHandSide,
	Matrix<T> result
)

Parameters

operation  TransposeOperation
The operation to perform on the matrix before solving.
rightHandSide  Matrix<T>
A matrix whose columns contain the right-hand sides.
result  Matrix<T>
The vector that is to hold the result. May be null.

Return Value

Matrix<T>

The solution of the system of equations defined by this instance, transformed as specified by operation, and rightHandSide.

Exceptions

ArgumentNullExceptionrightHandSide is null.

See Also