StatisticFormula.FDistribution(Double, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The F distribution formula calculates the probability for the F-distribution.
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
Parameters
- value
- Double
The F value for which you want the distribution.
- firstDegreeOfFreedom
- Int32
First degree of freedom.
- secondDegreeOfFreedom
- Int32
Second degree of freedom.
Returns
Probability for the F distribution.
Examples
The following code demonstrates how to use this formula.
Dim result As double = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7)
double result = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7);
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET