clValue.Erfc Method

function Erfc(const Src: TOpenCLValue): TOpenCLValue;

Complementary error functon of value.

#NameTypeDescription
1SrcTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculates the complementary error function value for object value.

Examples
var a,b: clValue;
begin
    b.Copy(2.3);
    a.Erfc(b);  // a = Erfc(2.3)
end;
See Also: Math387.ErfInv, clValue.Erfc