ChiInv(Probability: Double; DegreesOfFreedom: Integer): Double;
Probability. Probability related to χ2 (chi-square) distribution. This value should satisfy the following constraint: 0 <= Probability <;= 1.
DegreesOfFreedom. Number of degrees of freedom. Valid values lie in the range (1; 10^10).
The ChiInv method returns the value inverse to single-sided probability of chi-square distribution.
The function is used to compare observed results with expected results.
If the probability = ChiDist(x; …), then ChiInv(probability; …) = x.
To execute the example, add a link to the Stat system assembly.
Sub UserProc;
Var
st: Statistics;
d0: Double;
Begin
st := New Statistics.Create;
d0 := st.ChiInv(0.8, 10);
If st.Status <> 0 Then
Debug.WriteLine(st.Errors);
Else
Debug.WriteLine("Inverse to one-tailed probability of chi-square distribution: " + d0.ToString);
End If;
End Sub UserProc;
After executing the example the console window displays the inverse value for single-sided chi-square distribution probability:
See also: