simple-squiggle

A restricted subset of Squiggle
Log | Files | Refs | README

lsolve.js (386B)


      1 export var lsolveDocs = {
      2   name: 'lsolve',
      3   category: 'Algebra',
      4   syntax: ['x=lsolve(L, b)'],
      5   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.',
      6   examples: ['a = [-2, 3; 2, 1]', 'b = [11, 9]', 'x = lsolve(a, b)'],
      7   seealso: ['lsolveAll', 'lup', 'lusolve', 'usolve', 'matrix', 'sparse']
      8 };