polynomial.powers {orthopolynom} | R Documentation |
Create a list of polynomial linear combinations
Description
This function returns a list with elements containing the vector of
linear combinations of the order
polynomials for orders
.
Each element in the list is a vector.
Usage
polynomial.powers(polynomials)
Arguments
polynomials |
A list of polynomials |
Details
The -th component in the list is a vector of linear combinations of
the order
polynomials for orders
equal to
the monomial x raised to the power
.
Value
A list of elements where each element is a vector of linear combinations.
1 |
Linear combination(s) of polynomials up to order 0 |
2 |
Linear combination(s) of polynomials up to order 1 |
...
n+1 |
Linear combination(s) of polynomials up to order |
Author(s)
Frederick Novomestky fnovomes@poly.edu
Examples
###
### generate Legendre polynomials of orders 0 to 10
###
polynomials <- legendre.polynomials( 10 )
###
### generate list of linear combinations of these polynomials
###
alphas <- polynomial.powers( polynomials )
print( alphas )
[Package orthopolynom version 1.0-6.1 Index]