NAG Library Function Document

nag_normal_pdf (g01kac)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

nag_normal_pdf (g01kac) returns the value of the probability density function (PDF) for the Normal (Gaussian) distribution with mean μ and variance σ2 at a point x.

2
Specification

#include <nag.h>
#include <nagg01.h>
double  nag_normal_pdf (double x, double xmean, double xstd, NagError *fail)

3
Description

The Normal distribution has probability density function (PDF)
fx = 1 σ 2π e -x-μ2/2σ2 ,  σ>0 .  

4
References

None.

5
Arguments

1:     x doubleInput
On entry: x, the value at which the PDF is to be evaluated.
2:     xmean doubleInput
On entry: μ, the mean of the Normal distribution.
3:     xstd doubleInput
On entry: σ, the standard deviation of the Normal distribution.
Constraint: z<xstd2π<1.0/z, where z=nag_real_safe_small_number, the safe range parameter.
4:     fail NagError *Input/Output
The NAG error argument (see Section 3.7 in How to Use the NAG Library and its Documentation).

6
Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 2.3.1.2 in How to Use the NAG Library and its Documentation for further information.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 2.7.6 in How to Use the NAG Library and its Documentation for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 2.7.5 in How to Use the NAG Library and its Documentation for further information.
NE_OVERFLOW
Computation abandoned owing to an internal calculation overflowing.
NE_REAL
On entry, xstd=value.
Constraint: xstd×2.0π>U, where U is the safe range parameter as defined by nag_real_safe_small_number (X02AMC).
NE_UNDERFLOW
Computation abandoned owing to underflow of 1σ×2π.

7
Accuracy

Not applicable.

8
Parallelism and Performance

nag_normal_pdf (g01kac) is not threaded in any implementation.

9
Further Comments

None.

10
Example

This example prints the value of the Normal distribution PDF at four different points x with differing xmean and xstd.

10.1
Program Text

Program Text (g01kace.c)

10.2
Program Data

Program Data (g01kace.d)

10.3
Program Results

Program Results (g01kace.r)

GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 0.2 0.4 0.6 0.8 1 1.2 1.4 −3 −2 −1 0 1 2 3 y x Example Program Plots of the Gaussian Function (or Normal Distribution). μ=0, σ=0.3 μ=0, σ=1 μ=1, σ=0.6 gnuplot_plot_1 gnuplot_plot_2 gnuplot_plot_3
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017