PermutationMatrix.SolveInto Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

SolveInto(Matrix<T>, Matrix<T>) Solves a system of equations defined by the matrix and multiple right-hand sides.
SolveInto(Vector<T>, Vector<T>) Solves a system of equations defined by the matrix and the specified right-hand side.
SolveInto(TransposeOperation, Matrix<Double>, Matrix<Double>) Solves a system of equations defined by the matrix and multiple right-hand sides.
SolveInto(TransposeOperation, Vector<Double>, Vector<Double>) Solves a system of equations defined by the matrix and the specified right-hand side.

SolveInto(TransposeOperation, Matrix<Double>, Matrix<Double>)

Solves a system of equations defined by the matrix and multiple right-hand sides.
C#
public override Matrix<double> SolveInto(
	TransposeOperation operation,
	Matrix<double> rightHandSide,
	Matrix<double>? result
)

Parameters

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

Return Value

Matrix<Double>

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

Exceptions

ArgumentNullException

rightHandSide is null.

SolveInto(TransposeOperation, Vector<Double>, Vector<Double>)

Solves a system of equations defined by the matrix and the specified right-hand side.
C#
public override Vector<double> SolveInto(
	TransposeOperation operation,
	Vector<double> rightHandSide,
	Vector<double>? result
)

Parameters

operation  TransposeOperation
The operation to perform on the matrix before solving.
rightHandSide  Vector<Double>
A vector that contains the right-hand side.
result  Vector<Double>
The vector that is to hold the result. May be null.

Return Value

Vector<Double>

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

Exceptions

ArgumentNullException

rightHandSide is null.

See Also