| hermite_polynomials | R Documentation |
Functions to compute Hermite polynomials.
hermite(n, x)
hermite_next(n, x, Hn, Hnm1)
n |
Degree of the polynomial |
x |
Argument of the polynomial |
Hn |
Value of the Hermite polynomial |
Hnm1 |
Value of the Hermite polynomial |
A single numeric value with the computed Hermite polynomial or its next value.
Boost Documentation for more details on the mathematical background.
# Hermite polynomial H_2(0.5)
hermite(2, 0.5)
# Next Hermite polynomial H_3(0.5) using H_2(0.5) and H_1(0.5)
hermite_next(2, 0.5, hermite(2, 0.5), hermite(1, 0.5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.