Click or drag to resize

ILinearEquationSolverTSolve(IROMatrixT, IReadOnlyListT, IVectorT) Method

Solves the equation A*x == b. The matrix m and vector b will be kept. If this is not neccessary, then use SolveDestructive(IMatrixT, IVectorT, IVectorT), because it might be slightly faster.

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

Parameters

A  IROMatrixT
The matrix.
b  IReadOnlyListT
The right hand vector.
x  IVectorT
The solution x of the equation A*x==b.
See Also