lsolveAll.js 537 B

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