View source: R/chebyshev.t.weight.R
chebyshev.t.weight | R Documentation |
This function returns the value of the weight function for the order k Chebyshev polynomial of the first kind, T_k ≤ft( x \right) .
chebyshev.t.weight(x)
x |
the function argument which can be a vector |
The function takes on non-zero values in the interval ≤ft( -1,1 \right) . The formula used to compute the weight function is as follows.
w≤ft( x \right) = \frac{1}{{√ {1 - x^2 } }}
The value of the weight function.
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.
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 T Chebyshev function for argument values between -2 and 2 x <- seq( -1, 1, .01 ) y <- chebyshev.t.weight( x ) plot( x, y )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.