normalPDF

Computes the standard normal probability density function for z or the normal PDF with given mean and stdDev. (community summary)

  1. T normalPDF(T z)
  2. T normalPDF(T x, T mean, T stdDev)
    @safe pure nothrow @nogc
    T
    normalPDF
    (
    T
    )
    (
    const T x
    ,
    const T mean
    ,
    const T stdDev
    )
    if (
    isFloatingPoint!T
    )