logpNormal

logpNormal(x, tail=False)

Log-CDF of a unit-variance centered Normal distribution.

Parameters:
xfloat

Location.

tailbool

Tail flag.

Default value is False.

If True, the log-complementary CDF is computed.

Returns:
logCdffloat

The log-CDF or the log-complementary CDF at x.

Examples

>>> import openturns as ot
>>> logCdf = ot.DistFunc.logpNormal(0.9)