qr.js (498B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.qrDocs = void 0; 7 var qrDocs = { 8 name: 'qr', 9 category: 'Algebra', 10 syntax: ['qr(A)'], 11 description: 'Calculates the Matrix QR decomposition. Matrix `A` is decomposed in two matrices (`Q`, `R`) where `Q` is an orthogonal matrix and `R` is an upper triangular matrix.', 12 examples: ['qr([[1, -1, 4], [1, 4, -2], [1, 4, 2], [1, -1, 0]])'], 13 seealso: ['lup', 'slu', 'matrix'] 14 }; 15 exports.qrDocs = qrDocs;