sqrt.js 306 B

12345678
  1. export var sqrtDocs = {
  2. name: 'sqrt',
  3. category: 'Arithmetic',
  4. syntax: ['sqrt(x)'],
  5. description: 'Compute the square root value. If x = y * y, then y is the square root of x.',
  6. examples: ['sqrt(25)', '5 * 5', 'sqrt(-1)'],
  7. seealso: ['square', 'sqrtm', 'multiply', 'nthRoot', 'nthRoots', 'pow']
  8. };