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_moment1 (g01pt)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_stat_pdf_landau_moment1 (g01pt) returns the value of the first moment Φ1x of the Landau density function.

Syntax

[result] = g01pt(x)
[result] = nag_stat_pdf_landau_moment1(x)

Description

nag_stat_pdf_landau_moment1 (g01pt) evaluates an approximation to the first moment Φ1 x of the Landau density function given by
Φ1x=1Φx -xλϕλdλ,  
where ϕλ is described in nag_stat_pdf_landau (g01mt), using piecewise approximation by rational functions. Further details can be found in Kölbig and Schorr (1984).
To obtain the value of Φ2x, nag_stat_pdf_landau_moment2 (g01qt) 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 x 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.

Further Comments

None.

Example

This example evaluates Φ1x at x=0.5, and prints the results.
function g01pt_example


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

x = 0.5;
[phi1] = g01pt(x);

fprintf('Phi_1(%5.2f) = %8.4f\n', x, phi1);


g01pt example results

Phi_1( 0.50) =  -0.6293

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