Sdílet prostřednictvím


StatisticFormula.FDistribution(Double, Int32, Int32) Metoda

Definice

Distribuční vzorec F vypočítá pravděpodobnost F-rozdělení.

public:
 double FDistribution(double value, int firstDegreeOfFreedom, int secondDegreeOfFreedom);
public double FDistribution (double value, int firstDegreeOfFreedom, int secondDegreeOfFreedom);
member this.FDistribution : double * int * int -> double
Public Function FDistribution (value As Double, firstDegreeOfFreedom As Integer, secondDegreeOfFreedom As Integer) As Double

Parametry

value
Double

Hodnota F, pro kterou chcete rozdělení.

firstDegreeOfFreedom
Int32

První stupeň volnosti.

secondDegreeOfFreedom
Int32

Druhý stupeň volnosti.

Návraty

Pravděpodobnost pro F rozdělení.

Příklady

Následující kód ukazuje, jak tento vzorec použít.

Dim result As double = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7)  
double result = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7);  

Platí pro