Click or drag to resize

ILinearEquationSolverTSolveDestructive(IMatrixT, IVectorT, IVectorT) Method

Solves the equation A*x == b. The matrix A and the right hand vector b might be changed in the process. If this is unwanted, then better use Solve(IROMatrixT, IReadOnlyListT, IVectorT).

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void SolveDestructive(
	IMatrix<T> A,
	IVector<T> b,
	IVector<T> x
)

Parameters

A  IMatrixT
The m.
b  IVectorT
The b.
x  IVectorT
The result.
See Also