UNPKG

509 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.lusolveDocs = void 0;
7var lusolveDocs = {
8 name: 'lusolve',
9 category: 'Algebra',
10 syntax: ['x=lusolve(A, b)', 'x=lusolve(lu, b)'],
11 description: 'Solves the linear system A * x = b where A is an [n x n] matrix and b is a [n] column vector.',
12 examples: ['a = [-2, 3; 2, 1]', 'b = [11, 9]', 'x = lusolve(a, b)'],
13 seealso: ['lup', 'slu', 'lsolve', 'usolve', 'matrix', 'sparse']
14};
15exports.lusolveDocs = lusolveDocs;
\No newline at end of file