ERFC
Updated 2024-03-14 14:32:16.403000
Syntax
SELECT [westclintech].[wct].[ERFC] (
<@z, float,>)
Description
Use the scalar function ERFC to calculate the complementary error function. The complementary error function is defined by:
\operatorname{erfc}z=1-\operatorname{erf}z
Arguments
@z
is the value at which to evaluate the function. @z is an expression of type float or of a type that can be implicitly converted to float.
Return Type
float
Examples
select wct.ERFC(.75);
This produces the following result.
{"columns":[{"field":"column 1","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"column 1":"0.288844366346487"}]}