| laguerre_polynomials | R Documentation |
Functions to compute Laguerre polynomials of the first kind.
laguerre(n, x)
laguerre_m(n, m, x)
laguerre_next(n, x, Ln, Lnm1)
laguerre_next_m(n, m, x, Ln, Lnm1)
n |
Degree of the polynomial |
x |
Argument of the polynomial |
m |
Order of the polynomial (for Laguerre polynomials of the first kind) |
Ln |
Value of the Laguerre polynomial |
Lnm1 |
Value of the Laguerre polynomial |
A single numeric value with the computed Laguerre polynomial, its derivative, or related functions.
Boost Documentation for more details on the mathematical background.
# Laguerre polynomial of the first kind L_2(0.5)
laguerre(2, 0.5)
# Laguerre polynomial of the first kind with order 1 L_2^1(0.5)
laguerre_m(2, 1, 0.5)
# Next Laguerre polynomial of the first kind L_3(0.5) using L_2(0.5) and L_1(0.5)
laguerre_next(2, 0.5, laguerre(2, 0.5), laguerre(1, 0.5))
# Next Laguerre polynomial of the first kind with order 1 L_3^1(0.5) using L_2^1(0.5) and L_1^1(0.5)
laguerre_next_m(2, 1, 0.5, laguerre_m(2, 1, 0.5), laguerre_m(1, 1, 0.5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.