View source: R/polynomial.powers.R
polynomial.powers | R Documentation |
This function returns a list with n + 1 elements containing the vector of linear combinations of the order k polynomials for orders k = 0,\;1,\; … ,\;n. Each element in the list is a vector.
polynomial.powers(polynomials)
polynomials |
A list of polynomials |
The j-th component in the list is a vector of linear combinations of the order k polynomials for orders k = 0,\;1,\; … ,\;j - 1 equal to the monomial x raised to the power j - 1.
A list of n + 1 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 n |
Frederick Novomestky fnovomes@poly.edu
### ### 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 )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.