Linear Operator<T>.Solve Transpose 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. |
SolveTransposeInto(Matrix<T>, Matrix<T>)
Solves a system of equations defined by the matrix and multiple right-hand sides.
public Matrix<T> SolveTransposeInto(
Matrix<T> rightHandSide,
Matrix<T>? result
)
Parameters
- 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 the (conjugate) transpose of this instance and rightHandSide.
Exceptions
Argument | rightHandSide is null. |
SolveTransposeInto(Vector<T>, Vector<T>)
Solves a system of equations defined by the matrix and the specified right-hand side.
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
Argument | rightHandSide is null. |