| gegenbauer_polynomials | R Documentation |
Functions to compute Gegenbauer polynomials, their derivatives, and related functions.
gegenbauer(n, lambda, x)
gegenbauer_prime(n, lambda, x)
gegenbauer_derivative(n, lambda, x, k)
n |
Degree of the polynomial |
lambda |
Parameter of the polynomial |
x |
Argument of the polynomial |
k |
Order of the derivative |
A single numeric value with the computed Gegenbauer polynomial, its derivative, or k-th derivative.
Boost Documentation for more details on the mathematical background.
# Gegenbauer polynomial C_2^(1)(0.5)
gegenbauer(2, 1, 0.5)
# Derivative of the Gegenbauer polynomial C_2^(1)'(0.5)
gegenbauer_prime(2, 1, 0.5)
# k-th derivative of the Gegenbauer polynomial C_2^(1)''(0.5)
gegenbauer_derivative(2, 1, 0.5, 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.