StatisticFormula.FDistribution(Double, Int32, Int32) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
2 番目の自由度。
戻り値
F 分布の確率。
例
次のコードは、この数式の使用方法を示しています。
Dim result As double = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7)
double result = Chart1.DataManipulator.Statistics.FDistribution(6.31, 15, 7);
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET