nthRoots.js 573 B

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