UNPKG

562 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.usolveAllDocs = void 0;
7var usolveAllDocs = {
8 name: 'usolveAll',
9 category: 'Algebra',
10 syntax: ['x=usolve(U, b)'],
11 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.',
12 examples: ['x=usolve(sparse([1, 1, 1, 1; 0, 1, 1, 1; 0, 0, 1, 1; 0, 0, 0, 1]), [1; 2; 3; 4])'],
13 seealso: ['usolve', 'lup', 'lusolve', 'lsolve', 'matrix', 'sparse']
14};
15exports.usolveAllDocs = usolveAllDocs;
\No newline at end of file