-
Notifications
You must be signed in to change notification settings - Fork 0
Stats distributions normalpdf
github-actions[bot] edited this page Sep 25, 2026
·
3 revisions
Development build. This page describes
main, not a released package. The latest published Lodestar.Stats is 0.5.0 — read its documentation.
Home › Stats › Distribution tails
The standard normal density.
public static double NormalPdf(double z)Parameters — z is the point. NaN answers NaN.
Returns — scipy.stats.norm.pdf(z).
Exceptions — None.
Example — the density at one standard deviation.
using Lodestar.Stats;
double atOne = Distributions.NormalPdf(1.0); // => 0.241970…Remarks — exp(−z²/2) / √(2π), which underflows to zero past |z| ≈ 38.6, where scipy's does too.
Applies to — net10.0, netstandard2.0.
See also — Distributions.NormalCdf, Distributions.NormalSf.