StatisticFormula.FDistribution(Double, Int32, Int32) Метод

Определение

Формула F-распределения вычисляет вероятность для 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

Параметры

value
Double

Значение F, для которого необходимо получить распределение.

firstDegreeOfFreedom
Int32

Первая степень свободы.

secondDegreeOfFreedom
Int32

Вторая степень свободы.

Возвращаемое значение

Double

Вероятность для F-распределения.

Примеры

В следующем коде показано, как использовать эту формулу.

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

Применяется к