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
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.