Permutation Matrix.Solve Into Method
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Solve | Solves a system of equations defined by the matrix and multiple right-hand sides. |
Solve | Solves a system of equations defined by the matrix and the specified right-hand side. |
Solve | Solves a system of equations defined by the matrix and multiple right-hand sides. |
Solve | 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.
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
Argument | rightHandSide is null. |
SolveInto(TransposeOperation, Vector<Double>, Vector<Double>)
Solves a system of equations defined by the matrix and the specified right-hand side.
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
Argument | rightHandSide is null. |