delicatessen.utilities.standard_normal_cdf
- standard_normal_cdf(x)
Cumulative distribution function for the standard normal distribution. This is a wrapper function of
scipy.stats.norm.cdfmeant to enable automatic differentation withdelicatessen. When the input is aPrimalTangentPairsobject, then an internal function that implements the CDF function is called. Otherwise,scipy.stats.norm.cdfis called for the input object.- Parameters
x (int, float, ndarray) – Real valued input
- Returns
Return type depends on the input type (
PrimalTangentPairswill returnPrimalTangentPairs, otherwise willreturn
ndarray).