function Erf(const Src: TOpenCLValue): TOpenCLValue;
Error function of value.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Src | TOpenCLValue |
Returns: TOpenCLValue
Remarks:
Calculates the error function for object value.
Examples
var a,b: clValue;
begin
b.Copy(2.3);
a.Erf(b); // a = Erf(2.3)
end;
See Also: Math387.ErfInv, clValue.Erfc