View source: R/jacobi.p.polynomials.R
jacobi.p.polynomials | R Documentation |
This function returns a list with n + 1 elements containing the order k Jacobi polynomials, P_k^{≤ft( {α ,β } \right)} ≤ft( x \right), for orders k = 0,\;1,\; … ,\;n.
jacobi.p.polynomials(n, alpha, beta, normalized=FALSE)
n |
integer value for the highest polynomial order |
alpha |
numeric value for the first polynomial parameter |
beta |
numeric value for the second polynomial parameter |
normalized |
a boolean value which, if TRUE, returns a list of normalized orthogonal polynomials |
The function jacobi.p.recurrences
produces a data frame with the recurrence relation parameters
for the polynomials. If the normalized
argument is FALSE, the
function orthogonal.polynomials
is used to construct the list of orthogonal polynomial objects.
Otherwise, the function orthonormal.polynomials
is used to construct the
list of orthonormal polynomial objects.
A list of n + 1 polynomial objects
1 |
order 0 Jacobi polynomial |
2 |
order 1 Jacobi polynomial |
...
n+1 |
order n Chebyshev polynomial |
Frederick Novomestky fnovomes@poly.edu
Abramowitz, M. and I. A. Stegun, 1968. Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables, Dover Publications, Inc., New York.
Courant, R., and D. Hilbert, 1989. Methods of Mathematical Physics, John Wiley, New York, NY.
Szego, G., 1939. Orthogonal Polynomials, 23, American Mathematical Society Colloquium Publications, Providence, RI.
jacobi.p.recurrences
,
orthogonal.polynomials
,
orthonormal.polynomials
### ### gemerate a list of normalized Jacobi P polynomials of orders 0 to 10 ### first parameter value a is 2 and second parameter value b is 2 ### normalized.p.list <- jacobi.p.polynomials( 10, 2, 2, normalized=TRUE ) print( normalized.p.list ) ### ### gemerate a list of unnormalized Jacobi P polynomials of orders 0 to 10 ### first parameter value a is 2 and second parameter value b is 2 ### unnormalized.p.list <- jacobi.p.polynomials( 10, 2, 2, normalized=FALSE ) print( unnormalized.p.list )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.