sqrtm.js 347 B

12345678
  1. export var sqrtmDocs = {
  2. name: 'sqrtm',
  3. category: 'Arithmetic',
  4. syntax: ['sqrtm(x)'],
  5. 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`.',
  6. examples: ['sqrtm([[33, 24], [48, 57]])'],
  7. seealso: ['sqrt', 'abs', 'square', 'multiply']
  8. };