Click or drag to resize
sqx

ProbabilityStdLogistic_CDF Method

Function [float] StdLogistic_CDF([float] X)
(Continuous Probability)

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public static SqlDouble StdLogistic_CDF(
	SqlDouble X
)

Parameters

X
Type: System.Data.SqlTypesSqlDouble
[float]

Return Value

Type: SqlDouble
[float]
Remarks
Standard Logistic cumulative distribution function.
Examples
SQL
SELECT Value
, sqx.StdLogistic_PDF(Value) PDF
, sqx.StdLogistic_CDF(Value) CDF
, sqx.StdLogistic_QDF(Value) QDF
, sqx.StdLogistic_PPF(sqx.StdLogistic_CDF(Value)) PPF
FROM sqx.XTable(-745,710,0.1)
See Also