lsolveAll.js (393B)
1 export var lsolveAllDocs = { 2 name: 'lsolveAll', 3 category: 'Algebra', 4 syntax: ['x=lsolveAll(L, b)'], 5 description: 'Finds all solutions of the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.', 6 examples: ['a = [-2, 3; 2, 1]', 'b = [11, 9]', 'x = lsolve(a, b)'], 7 seealso: ['lsolve', 'lup', 'lusolve', 'usolve', 'matrix', 'sparse'] 8 };