LOGISTICINV
Updated: 31 July 2010
Use LOGISTICINV to calculate the inverse lower cumulative distribution of the logistic distribution.
The formula for the lower cumulative distribution function is:
Syntax
SELECT [wctStatistics].[wct].[LOGISTICINV] (
<@P, float,>
,<@A, float,>
,<@B, float,>)
Arguments
@P
is the value of the lower cumulative distribution function. @P is an expression of type float or of a type that implicitly converts to float.
@A
is the location parameter. @A is an expression of type float or of a type that implicitly converts to float.
@B
is the scale parameter. @B is an expression of type float or of a type that implicitly converts to float.
Return Types
float
Remarks
· @B must be greater than zero (B > 0).
· @P must be greater than zero and less than one (0 < @P < 1).
Examples
Calculate the inverse of the lower cumulative distribution function:
SELECT wct.LOGISTICINV(0.731058578630005,0,1)
This produces the following result
----------------------
1
(1 row(s) affected)