[][src]Module statrs::function::evaluate

Provides functions that don't have a numerical solution and must be solved computationally (e.g. evaluation of a polynomial)

Functions

polynomial

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 kth power is the kth element in coeff. E.g. [3,-1,2] equates to 2z^2 - z + 3