TOpenCLValue.Erf Method

function Erf(const Src: TOpenCLValue): TOpenCLValue;

Error function.

#NameTypeDescription
1SrcTOpenCLValue

Returns: TOpenCLValue

Remarks:

Calculates the error function of Src.

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