UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

8 lines 386 B
export var lsolveDocs = { name: 'lsolve', category: 'Algebra', syntax: ['x=lsolve(L, b)'], description: 'Finds one solution of the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.', examples: ['a = [-2, 3; 2, 1]', 'b = [11, 9]', 'x = lsolve(a, b)'], seealso: ['lsolveAll', 'lup', 'lusolve', 'usolve', 'matrix', 'sparse'] };