lusolve.js 371 B

12345678
  1. export var lusolveDocs = {
  2. name: 'lusolve',
  3. category: 'Algebra',
  4. syntax: ['x=lusolve(A, b)', 'x=lusolve(lu, b)'],
  5. description: 'Solves the linear system A * x = b where A is an [n x n] matrix and b is a [n] column vector.',
  6. examples: ['a = [-2, 3; 2, 1]', 'b = [11, 9]', 'x = lusolve(a, b)'],
  7. seealso: ['lup', 'slu', 'lsolve', 'usolve', 'matrix', 'sparse']
  8. };