sqrt.js 435 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.sqrtDocs = void 0;
  6. var sqrtDocs = {
  7. name: 'sqrt',
  8. category: 'Arithmetic',
  9. syntax: ['sqrt(x)'],
  10. description: 'Compute the square root value. If x = y * y, then y is the square root of x.',
  11. examples: ['sqrt(25)', '5 * 5', 'sqrt(-1)'],
  12. seealso: ['square', 'sqrtm', 'multiply', 'nthRoot', 'nthRoots', 'pow']
  13. };
  14. exports.sqrtDocs = sqrtDocs;