Complex Singular Value Decomposition<T>.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<Complex<T>>, Matrix<Complex<T>>)
Solves a system of equations defined by the matrix and multiple right-hand sides.
public override Matrix<Complex<T>> SolveInto(
TransposeOperation operation,
Matrix<Complex<T>> rightHandSide,
Matrix<Complex<T>>? result
)
Parameters
- operation TransposeOperation
- The operation to perform on the matrix before solving.
- rightHandSide Matrix<Complex<T>>
- A matrix whose columns contain the right-hand sides.
- result Matrix<Complex<T>>
- The vector that is to hold the result. May be null.
Return Value
Matrix<Complex<T>>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<Complex<T>>, Vector<Complex<T>>)
Solves a system of equations defined by the matrix and the specified right-hand side.
public override Vector<Complex<T>> SolveInto(
TransposeOperation operation,
Vector<Complex<T>> rightHandSide,
Vector<Complex<T>>? result
)
Parameters
- operation TransposeOperation
- The operation to perform on the matrix before solving.
- rightHandSide Vector<Complex<T>>
- A vector that contains the right-hand side.
- result Vector<Complex<T>>
- The vector that is to hold the result. May be null.
Return Value
Vector<Complex<T>>The solution of the system of equations defined by this instance, transformed as specified by operation, and rightHandSide.
Exceptions
Argument | rightHandSide is null. |