usolveAll.js 562 B

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