Click or drag to resize

ISolverTSolve(MatrixT, MatrixT) Method

Solves a system of linear equations, AX = B.

Namespace: Altaxo.Calc.LinearAlgebra.Factorization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void Solve(
	Matrix<T> input,
	Matrix<T> result
)

Parameters

input  MatrixT
The right hand side Matrix, B.
result  MatrixT
The left hand side Matrix, X.
See Also