Introduction to numpy, scipy and matplotlib

can receive an array of coefficients as an input and returns an array of roots: >>> np.roots([1, 4, -2, 3]) array([-4.57974010+0.j , 0.28987005+0.75566815j, 0.28987005-0.75566815j]) NumPy also has the ability to return the derivative and antiderivative (indefinite integral) of a polynomial. Given an array of coefficients of a polynomial, when ... ................
................