UNPKG

537 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.lsolveAllDocs = void 0;
7var 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};
15exports.lsolveAllDocs = lsolveAllDocs;
\No newline at end of file