monic.polynomials {orthopolynom} | R Documentation |
Create list of monic orthogonal polynomials
Description
This function returns a list with n + 1
elements containing
the order k
monic polynomials
for orders k = 0,\;1,\; \ldots ,\;n
.
Usage
monic.polynomials(monic.recurrences)
Arguments
monic.recurrences |
a data frame containing the parameters a and b |
Value
A list with n + 1
polynomial objects
1 |
order 0 monic orthogonal polynomial |
2 |
order 1 monic orthogonal polynomial |
...
n+1 |
order |
Author(s)
Frederick Novomestky fnovomes@poly.edu
References
Press, W. H., S. A. Teukolsky, W. T. Vetterling, and B. P. Flannery, 1992. Numerical Recipes in C, Cambridge University Press, Cambridge, U.K.
See Also
Examples
###
### generate the recurrences for the T Chebyshev polynomials
### of orders 0 to 10
###
r <- chebyshev.t.recurrences( 10, normalized=TRUE )
###
### get the corresponding monic polynomial recurrences
###
m.r <- monic.polynomial.recurrences( r )
###
### obtain the list of monic polynomials
###
p.list <- monic.polynomials( m.r )
[Package orthopolynom version 1.0-6.1 Index]