Click or drag to resize

MatrixSolveLower Method

Solves the equation A*x = b for a lower triangular matrix A using forward substitution.

Namespace: Altaxo.Calc.Ode.Obsolete
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public Vector SolveLower(
	Vector b
)

Parameters

b  Vector
The vector b in the equation A*x = b.

Return Value

Vector
The solution vector x.
See Also