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_moment2 (g01qt)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_stat_pdf_landau_moment2 (g01qt) returns the value of the second moment Φ2x of the Landau density function.

Syntax

[result] = g01qt(x)
[result] = nag_stat_pdf_landau_moment2(x)

Description

nag_stat_pdf_landau_moment2 (g01qt) evaluates an approximation to the second moment Φ2 x of the Landau density function given by
Φ2x=1Φx -xλ2ϕλ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 Φ1x, nag_stat_pdf_landau_moment1 (g01pt) 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 Φ2x at x=0.5, and prints the results.
function g01qt_example


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

x = 0.5;
[phi2] = g01qt(x);

fprintf('Phi_2(%5.2f) = %8.4f\n', x, phi2);


g01qt example results

Phi_2( 0.50) =   0.9087

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