atoti.experimental.stats.normal.pdf()#

atoti.experimental.stats.normal.pdf(point, /, *, mean=0, standard_deviation=1)#

Probability density function for a normal distribution.

The pdf is given by the formula

pdf(x)=1σ2πe12(xμσ)2

Where μ is the mean (or expectation) of the distribution while σ is its standard deviation.

Parameters:
  • point (VariableMeasureConvertible) – The point where the function is evaluated.

  • mean (NumericMeasureConvertible) – The mean value of the distribution.

  • standard_deviation (StrictlyPositiveNumber | VariableMeasureConvertible) – The standard deviation of the distribution. Must be positive.

Return type:

MeasureDescription