polynomialRoot.js 419 B

12345678
  1. export var polynomialRootDocs = {
  2. name: 'polynomialRoot',
  3. category: 'Algebra',
  4. syntax: ['x=polynomialRoot(-6, 3)', 'x=polynomialRoot(4, -4, 1)', 'x=polynomialRoot(-8, 12, -6, 1)'],
  5. description: 'Finds the roots of a univariate polynomial given by its coefficients starting from constant, linear, and so on, increasing in degree.',
  6. examples: ['a = polynomialRoot(-6, 11, -6 1)'],
  7. seealso: ['cbrt', 'sqrt']
  8. };