lusolve.js 509 B

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