nthRoots.js (573B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.nthRootsDocs = void 0; 7 var nthRootsDocs = { 8 name: 'nthRoots', 9 category: 'Arithmetic', 10 syntax: ['nthRoots(A)', 'nthRoots(A, root)'], 11 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.', 12 examples: ['nthRoots(1)', 'nthRoots(1, 3)'], 13 seealso: ['sqrt', 'pow', 'nthRoot'] 14 }; 15 exports.nthRootsDocs = nthRootsDocs;