Member of the polynomials class.
c = roots(a)
Computes the roots of a polynomial.
| Name | Description |
| a | Specifies the coefficients in descending order of power of the polynomial whose roots you want to compute. a is a real or complex vector. |
| Name | Description |
| c | Returns the roots of a. c is a vector of real or complex numbers. |
A = [5, 4, 3, 2, 1]
C = roots(A)