simple-squiggle

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

lsolveAll.js (537B)


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