UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

14 lines (13 loc) 561 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.nthRootsDocs = void 0; const nthRootsDocs = exports.nthRootsDocs = { name: 'nthRoots', category: 'Arithmetic', syntax: ['nthRoots(A)', 'nthRoots(A, root)'], 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.', examples: ['nthRoots(1)', 'nthRoots(1, 3)'], seealso: ['sqrt', 'pow', 'nthRoot'] };