schur.js 260 B

12345678
  1. export var schurDocs = {
  2. name: 'schur',
  3. category: 'Matrix',
  4. syntax: ['schur(A)'],
  5. description: 'Performs a real Schur decomposition of the real matrix A = UTU\'',
  6. examples: ['schur([[1, 0], [-4, 3]])', 'schur(A)'],
  7. seealso: ['lyap', 'sylvester']
  8. };