View source: R/univariate_Gaussian_sampler.R
dnorm_tempered | R Documentation |
Density of tempered Gaussian distribution
dnorm_tempered(x, mean = 0, sd = 1, beta)
x |
real value |
mean |
mean value |
sd |
standard deviation value |
beta |
real value |
density of tempered Gaussian distribution
# standard normal curve(dnorm(x), -5, 5) # standard normal to the power 1/2 curve(dnorm_tempered(x, mean = 0, sd = 1, beta = 1/2), -5, 5, add = T, col = 'blue')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.