hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_stat_pdf_landau (g01mt)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_stat_pdf_landau (g01mt) returns the value of the Landau density function ϕλ.

Syntax

[result] = g01mt(x)
[result] = nag_stat_pdf_landau(x)

Description

nag_stat_pdf_landau (g01mt) evaluates an approximation to the Landau density function ϕλ given by
ϕλ=12πi c-i c+iexpλs+slnsds,  
where c is an arbitrary real constant, using piecewise approximation by rational functions. Further details can be found in Kölbig and Schorr (1984).
To obtain the value of ϕλ, nag_stat_pdf_landau_deriv (g01rt) can be used.

References

Kölbig K S and Schorr B (1984) A program package for the Landau distribution Comp. Phys. Comm. 31 97–111

Parameters

Compulsory Input Parameters

1:     x – double scalar
The argument λ of the function.

Optional Input Parameters

None.

Output Parameters

1:     result – double scalar
The result of the function.

Error Indicators and Warnings

None.

Accuracy

At least 7 significant digits are usually correct, but occasionally only 6. Such accuracy is normally considered to be adequate for applications in experimental physics.
Because of the asymptotic behaviour of ϕλ, which is of the order of exp-exp-λ, underflow may occur on some machines when λ is moderately large and negative.

Further Comments

None.

Example

This example evaluates ϕλ at λ=0.5, and prints the results.
function g01mt_example


fprintf('g01mt example results\n\n');

x = 0.5;
[y] = g01mt(x);

fprintf('phi(%5.2f) = %9.4e\n', x, y);


g01mt example results

phi( 0.50) = 1.6523e-01

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015