703 B

Function lsolve

Solves the linear equation system by forwards substitution. Matrix must be a lower triangular matrix.

L * x = b

Syntax

math.lsolve(L, b);

Parameters

Parameter Type Description
A Matrix, Array N x N matrix or array (L)
A Matrix, Array column vector with the b values

Returns

Type Description
DenseMatrix | Array A column vector with the linear system solution (x)

See also

lup, slu, usolve, lusolve