nthRoot.js 541 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.nthRootDocs = void 0;
  6. var nthRootDocs = {
  7. name: 'nthRoot',
  8. category: 'Arithmetic',
  9. syntax: ['nthRoot(a)', 'nthRoot(a, root)'],
  10. description: 'Calculate the nth root of a value. ' + 'The principal nth root of a positive real number A, ' + 'is the positive real solution of the equation "x^root = A".',
  11. examples: ['4 ^ 3', 'nthRoot(64, 3)', 'nthRoot(9, 2)', 'sqrt(9)'],
  12. seealso: ['nthRoots', 'pow', 'sqrt']
  13. };
  14. exports.nthRootDocs = nthRootDocs;