Expand description
Provides functions that don’t have a numerical solution and must be solved computationally (e.g. evaluation of a polynomial)
Functions
- evaluates a polynomial at
z
wherecoeff
are the coeffecients to a polynomial of orderk
wherek
is the length ofcoeff
and the coeffecient to thek
th power is thek
th element in coeff. E.g. [3,-1,2] equates to2z^2 - z + 3