g01fd Method
関数リスト一覧   NagLibrary Namespaceへ  ライブラリイントロダクション  本ヘルプドキュメントのchm形式版

g01fd returns the deviate associated with the given lower tail probability of the F or variance-ratio distribution with real degrees of freedom.

Syntax

C#
public static double g01fd(
	double p,
	double df1,
	double df2,
	out int ifail
)
Visual Basic (Declaration)
Public Shared Function g01fd ( _
	p As Double, _
	df1 As Double, _
	df2 As Double, _
	<OutAttribute> ByRef ifail As Integer _
) As Double
Visual C++
public:
static double g01fd(
	double p, 
	double df1, 
	double df2, 
	[OutAttribute] int% ifail
)
F#
static member g01fd : 
        p:float * 
        df1:float * 
        df2:float * 
        ifail:int byref -> float 

Parameters

p
Type: System..::.Double
On entry: p, the probability from the required F-distribution.
Constraint: 0.0p<1.0.
df1
Type: System..::.Double
On entry: the degrees of freedom of the numerator variance, ν1.
Constraint: df1>0.0.
df2
Type: System..::.Double
On entry: the degrees of freedom of the denominator variance, ν2.
Constraint: df2>0.0.
ifail
Type: System..::.Int32 %
On exit: ifail=0 unless the method detects an error (see [Error Indicators and Warnings]).

Return Value

g01fd returns the deviate associated with the given lower tail probability of the F or variance-ratio distribution with real degrees of freedom.

Description

References

Error Indicators and Warnings

Note: g01fd may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
If on exit ifail=1, 2 or 4, then g01fd returns 0.0.
ifail=1
On entry,p<0.0,
orp1.0.
ifail=2
On entry,df10.0,
ordf20.0.
ifail=3
ifail=4
The value of p is too close to 0 or 1 for the value of fp to be computed. This will only occur when the large sample approximations are used.

Accuracy

Further Comments

For higher accuracy g01fe can be used along with the transformations given in [Description].

Example

See Also