WorksheetFunction.T_Inv(Double, Double) 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.
Returns the left-tailed inverse of the Student t-distribution.
public:
double T_Inv(double Arg1, double Arg2);
public double T_Inv (double Arg1, double Arg2);
Public Function T_Inv (Arg1 As Double, Arg2 As Double) As Double
Parameters
- Arg1
- Double
Probability - The probability associated with the Student t-distribution.
- Arg2
- Double
Deg_freedom - The number of degrees of freedom with which to characterize the distribution.
Returns
Remarks
If either argument is non-numeric, T_Inv returns the #VALUE! error value.
If probability < 0 or if probability > 1, T_Inv returns the #NUM! error value.
If deg_freedom is not an integer, it is truncated.
If deg_freedom < 1, T_Inv returns the #NUM! error value.