Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/gauss.hermite.R
This function returns the Gauss-Hermite series as defined by van der Marel & Franx (1993) up to order 4.
| 1 | gauss.hermite(x, x0, sigma, h3, h4, norm = TRUE)
 | 
| x | numeric vector | 
| x0 | mean of the Gaussian part of the Gauss-Hermite series | 
| sigma | sigma of the Gaussian part of the Gauss-Hermite series | 
| h3, h4 |  coefficients of the Hermite polynomials
 | 
| norm |  logical; if  | 
The definition of the Gauss-Hermite series is that of van der Marel & Franx (1993) and might differ somewhat from other definitions.
A numeric vector giving the values of the Gauss-Hermite series at x.
Oliver Czoske
van der Marel, R. P., Franx, M., Astroph. Journ. 407, 525 (1993)
| 1 2 3 | x <- seq(-500, 500, by=25)
y <- gauss.hermite(x, 0, 120, 0.1, 0.3)
plot(x, y, type='l')
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.