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