- AddPoly
Add two polynomials (vectors)
- IsPoly
Check if a vector is usable as a polynomial
- MultiplyPoly
Multiply two polynomials (as vectors)
- NewtonsMethodPoly
NewtonsMethodPoly (poly,guess,epsilon,maxn) |
Run newton's method on a polynomial to attempt to find a root, returns after two successive values are within epsilon or after maxn tries (then returns null).
- Poly2ndDerivative
Take second polynomial (as vector) derivative
- PolyDerivative
Take polynomial (as vector) derivative
- PolyToFunction
Make function out of a polynomial (as vector)
- PolyToString
Make string out of a polynomial (as vector)
- SubtractPoly
Subtract two polynomials (as vectors)
- TrimPoly
Trim zeros from a polynomial (as vector)