dNormal¶
- dNormal(*args)¶
PDF of a unit-variance centered Normal distribution.
- Parameters:
- xfloat or sequence of floats
Location.
- Returns:
- pdffloat or sequence of floats
The PDF at .
Examples
>>> import openturns as ot >>> pdf = ot.DistFunc.dNormal(3.0) >>> pdf = ot.DistFunc.dNormal([-3, -2, 2, 3])