Sdílet prostřednictvím


StatisticFormula.InverseFDistribution(Double, Int32, Int32) Metoda

Definice

Vzorec invertující distribuci F Vypočítá inverzní text k kumulativní distribuci F.

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

Parametry

probability
Double

Pravděpodobnost rozdělení F Přijatelný rozsah je od 0 do 1.

firstDegreeOfFreedom
Int32

První stupeň volnosti.

secondDegreeOfFreedom
Int32

Druhá úroveň volnosti.

Návraty

Double

Hodnota f rozdělení F.

Příklady

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

Dim result As Double = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30)  
double result = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30);  

Platí pro