UNPKG

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