Udostępnij za pośrednictwem


StatisticFormula.InverseFDistribution(Double, Int32, Int32) Metoda

Definicja

Odwrotna formuła rozkładu języka F oblicza odwrotność rozkładu skumulowanego języka 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

Prawdopodobieństwo rozkładu F. Dopuszczalny zakres wynosi od 0 do 1.

firstDegreeOfFreedom
Int32

Pierwszy stopień swobody.

secondDegreeOfFreedom
Int32

Drugi stopień swobody.

Zwraca

Wartość F dla dystrybucji F.

Przykłady

Poniższy kod pokazuje, jak używać tej formuły.

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

Dotyczy