Udostępnij za pośrednictwem


StatisticFormula.FDistribution(Double, Int32, Int32) Metoda

Definicja

Formuła rozkładu F oblicza prawdopodobieństwo rozkładu 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

Parametry

value
Double

Wartość F, dla której chcesz uzyskać dystrybucję.

firstDegreeOfFreedom
Int32

Pierwszy stopień swobody.

secondDegreeOfFreedom
Int32

Drugi stopień swobody.

Zwraca

Double

Prawdopodobieństwo rozkładu F.

Przykłady

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

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

Dotyczy