glaguerre.weight {orthopolynom} | R Documentation |
Weight function for the generalized Laguerre polynomial
Description
This function returns the value of the weight function for the order k
generalized Laguerre polynomial, L_n^{\left( \alpha \right)} \left( x \right)
.
Usage
glaguerre.weight(x,alpha)
Arguments
x |
the function argument which can be a vector |
alpha |
polynomial parameter |
Details
The function takes on non-zero values in the interval \left( 0,\infty \right)
. The formula
used to compute the weight function is as follows.
w\left( x \right) = e^{ - x} \,x^\alpha
Value
The value of the weight function
Author(s)
Frederick Novomestky fnovomes@poly.edu
References
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.
Examples
###
### compute the generalized Laguerre weight function for argument values
### between -3 and 3
### polynomial parameter value is 1.0
###
x <- seq( -3, 3, .01 )
y <- glaguerre.weight( x, 1 )