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
where coeff
are the coeffecients
to a polynomial of order k
where k
is the length of coeff
and the
coeffecient
to the k
th power is the k
th element in coeff. E.g. [3,-1,2] equates to
2z^2 - z + 3