StatisticFormula.FDistribution(Double, Int32, Int32) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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 à
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.