OCTAVE :: ROOTS - Roots of the Polynomial INDEX
    INPUT: octave: > roots ([])
    Function: roots( v )

    • Return the roots of the polynomial for a vector v with N components.

    Example:
      octave: > v = [ 1 -8 -3 9 ]
      v =
         1  -8  -3   9
      
      octave: > roots( v )
      ans =
         8.23163
        -1.16784
         0.93621
       
      Polynomial
    See Also:
       MAXIMA :: ALLROOTS ... Numerical Approximations of the real and complex Roots of the Polynomial
OCTAVE :: ROOTS