pystra.distributions.distribution.StdNormal#
- class StdNormal[source]#
Bases:
objectStandard normal distribution (mean 0, standard deviation 1).
A lightweight implementation using
scipy.specialerror functions, avoiding the overhead of a fullscipy.statsdistribution object. This class is used internally by the Nataf transformation and by the marginal distribution mappings (x_to_u/u_to_x).Methods
Cumulative distribution function of the standard normal.
Probability density function of the standard normal.
Percent-point (inverse CDF) of the standard normal.
- static pdf(u)[source]#
Probability density function of the standard normal.
- Parameters:
u (float or array_like) – Quantile(s) in standard normal space.
- Returns:
Density value(s).
- Return type:
float or ndarray