R/Normal.R

Defines functions Normal

## -----------------------------------------------------------------------------
## Fonction Normal
## -----------------------------------------------------------------------------
##    Copyright (C) 2013
##    Developpement : C. WALTER
##    CEA
## -----------------------------------------------------------------------------

Normal = function(x,mean=0,sigma=1) {
	1/(sigma*sqrt(2*pi))*exp(-0.5*(x-mean)^2/sigma^2)
}

Try the mistral package in your browser

Any scripts or data that you put into this service are public.

mistral documentation built on April 19, 2021, 1:06 a.m.