ComplexSingularValueDecomposition<T>.SolveInto Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

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<Complex<T>>, Matrix<Complex<T>>) Solves a system of equations defined by the matrix and multiple right-hand sides.
SolveInto(TransposeOperation, Vector<Complex<T>>, Vector<Complex<T>>) 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.
C#
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

ArgumentNullExceptionrightHandSide 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.
C#
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

ArgumentNullExceptionrightHandSide is null.

See Also