WorksheetFunction.T_Inv Method
Returns the left-tailed inverse of the Student t-distribution.
Namespace: Microsoft.Office.Interop.Excel
Assembly: Microsoft.Office.Interop.Excel (in Microsoft.Office.Interop.Excel.dll)
Syntax
'Declaration
Function T_Inv ( _
Arg1 As Double, _
Arg2 As Double _
) As Double
'Usage
Dim instance As WorksheetFunction
Dim Arg1 As Double
Dim Arg2 As Double
Dim returnValue As Double
returnValue = instance.T_Inv(Arg1, Arg2)
double T_Inv(
double Arg1,
double Arg2
)
Parameters
Arg1
Type: System.DoubleProbability - The probability associated with the Student t-distribution.
Arg2
Type: System.DoubleDeg_freedom - The number of degrees of freedom with which to characterize the distribution.
Return Value
Type: System.Double
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.