simple-squiggle

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

lsolve.js (521B)


      1 "use strict";
      2 
      3 Object.defineProperty(exports, "__esModule", {
      4   value: true
      5 });
      6 exports.lsolveDocs = void 0;
      7 var lsolveDocs = {
      8   name: 'lsolve',
      9   category: 'Algebra',
     10   syntax: ['x=lsolve(L, b)'],
     11   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.',
     12   examples: ['a = [-2, 3; 2, 1]', 'b = [11, 9]', 'x = lsolve(a, b)'],
     13   seealso: ['lsolveAll', 'lup', 'lusolve', 'usolve', 'matrix', 'sparse']
     14 };
     15 exports.lsolveDocs = lsolveDocs;