Share via


StatisticFormula.FDistribution(Double, Int32, Int32) Méthode

Définition

La formule de la distribution F permet de calculer la probabilité de la distribution F.

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

Paramètres

value
Double

Valeur F pour laquelle vous souhaitez obtenir la distribution.

firstDegreeOfFreedom
Int32

Premier degré de liberté.

secondDegreeOfFreedom
Int32

Second degré de liberté.

Retours

Probabilité pour la distribution F.

Exemples

Le code suivant montre comment utiliser cette formule.

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

S’applique à