StatisticFormula.InverseFDistribution(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 inverse F distribution formula calculates the inverse of the F cumulative distribution.
public:
double InverseFDistribution(double probability, int firstDegreeOfFreedom, int secondDegreeOfFreedom);
public double InverseFDistribution (double probability, int firstDegreeOfFreedom, int secondDegreeOfFreedom);
member this.InverseFDistribution : double * int * int -> double
Public Function InverseFDistribution (probability As Double, firstDegreeOfFreedom As Integer, secondDegreeOfFreedom As Integer) As Double
Parameters
- probability
- Double
Probability for the F distribution. The acceptable range is between 0 and 1.
- firstDegreeOfFreedom
- Int32
First degree of freedom.
- secondDegreeOfFreedom
- Int32
Second degree of freedom.
Returns
F value for the F distribution.
Examples
The following code demonstrates how to use this formula.
Dim result As Double = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30)
double result = Chart1.DataManipulator.Statistics.InverseFDistribution(.05, 15, 30);
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.