lusolve.js (509B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.lusolveDocs = void 0; 7 var 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 }; 15 exports.lusolveDocs = lusolveDocs;