qr.js 375 B

12345678
  1. export var qrDocs = {
  2. name: 'qr',
  3. category: 'Algebra',
  4. syntax: ['qr(A)'],
  5. 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.',
  6. examples: ['qr([[1, -1, 4], [1, 4, -2], [1, 4, 2], [1, -1, 0]])'],
  7. seealso: ['lup', 'slu', 'matrix']
  8. };