hypot.js 437 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.hypotDocs = void 0;
  6. var hypotDocs = {
  7. name: 'hypot',
  8. category: 'Arithmetic',
  9. syntax: ['hypot(a, b, c, ...)', 'hypot([a, b, c, ...])'],
  10. description: 'Calculate the hypotenusa of a list with values. ',
  11. examples: ['hypot(3, 4)', 'sqrt(3^2 + 4^2)', 'hypot(-2)', 'hypot([3, 4, 5])'],
  12. seealso: ['abs', 'norm']
  13. };
  14. exports.hypotDocs = hypotDocs;