polynomial.integrals {orthopolynom} | R Documentation |
This function returns a list with $n$+1 elements containing polynomial objects which are the indefinite integrals of the order $k$ polynomials for orders $k$ = 0, ... , $n$.
polynomial.integrals(polynomials)
polynomials |
list of polynomial objects |
The polynomial objects in the argument polynomials
are as follows
List of polynomial objects
1 |
integral of polynomials[[1]] |
2 |
integral of polynomials[[2]] |
n+1 |
integral of polynomials[[n+1]] |
Frederick Novomestky fnovomes@poly.edu
p.list <- chebyshev.t.polynomials( 10, normalized=TRUE ) p.int <- polynomial.integrals( p.list )