monic.polynomials {orthopolynom} | R Documentation |
This function returns a list with $n$+1 elements containing the order $k$ monic polynomials for orders $k$ = 0, 1 ,... ,$n$.
monic.polynomials(monic.recurrences)
monic.recurrences |
a data frame containing the parameters a and b |
A list with $n$+1 polynomial objects
1 |
order 0 monic orthogonal polynomial |
2 |
order 1 monic orthogonal polynomial |
n+1 |
order $n$ monic orthogonal polynomial |
Frederick Novomestky fnovomes@poly.edu
Press, et al (1992)
r <- chebyshev.t.recurrences( 10, normalized=TRUE ) m.r <- monic.polynomial.recurrences( r ) p.list <- monic.polynomials( m.r )