sqrtm.js 479 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.sqrtmDocs = void 0;
  6. var sqrtmDocs = {
  7. name: 'sqrtm',
  8. category: 'Arithmetic',
  9. syntax: ['sqrtm(x)'],
  10. description: 'Calculate the principal square root of a square matrix. The principal square root matrix `X` of another matrix `A` is such that `X * X = A`.',
  11. examples: ['sqrtm([[33, 24], [48, 57]])'],
  12. seealso: ['sqrt', 'abs', 'square', 'multiply']
  13. };
  14. exports.sqrtmDocs = sqrtmDocs;