This function returns the value of the weight function for the order
jacobi.p.weight(x,alpha,beta)
The value of the weight function
the function argument which can be a vector
the first polynomial parameter
the second polynomial parameter
Frederick Novomestky fnovomes@poly.edu
The function takes on non-zero values in the interval
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.
Press, W. H., S. A. Teukolsky, W. T. Vetterling, and B. P. Flannery, 1992. Numerical Recipes in C, Cambridge University Press, Cambridge, U.K.
Szego, G., 1939. Orthogonal Polynomials, 23, American Mathematical Society Colloquium Publications, Providence, RI.
###
### compute the Jacobi P weight function for argument values
### between -1 and 1
###
x <- seq( -1, 1, .01 )
y <- jacobi.p.weight( x, 2, 2 )
Run the code above in your browser using DataLab