clVector.Erf Method

Overload List

#SignatureDescription
1function Erf: TOpenCLMtxVec;Error functon of values.
└ indexed: function Erf(Index: Integer; Len: Integer): TOpenCLMtxVec;
2function Erf(const Src: TOpenCLMtxVec): TOpenCLMtxVec;Calculates the error function for all Src object values.
└ indexed: function Erf(const Src: TOpenCLMtxVec; SrcIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Overload 1: function Erf: TOpenCLMtxVec;

Error functon of values.

Result: stored in self (calling object), returns self for chaining

Remarks:

Calculates the error function for all object values in-place.

Examples
var a: clVector;
    ind: Integer;
begin
    a.CopyFromArray(TSingleArray.Create(1, 5.5, -1.6, 6)); // a = [1, 5.5, -1.6, 6]
    a.Erf;
end;
See Also: Math387.ErfInv, clVector.Erfc

Indexed: function Erf(Index: Integer; Len: Integer): TOpenCLMtxVec;

Calculates the error function for calling object elements [Index]..[Index+Len-1] in-place.

#NameTypeDescription
1IndexIntegerstart index
2LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

An exception is raised if array borders are overrun or underrun.

Overload 2: function Erf(const Src: TOpenCLMtxVec): TOpenCLMtxVec;

Calculates the error function for all Src object values.

#NameTypeDescription
1SrcTOpenCLMtxVec

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores the result in calling object. Size and clVector.Complex properties of calling object are adjusted automatically.

Indexed: function Erf(const Src: TOpenCLMtxVec; SrcIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Calculates the error function for Src object elements [SrcIndex]..[SrcIndex+Len-1].

#NameTypeDescription
1SrcTOpenCLMtxVec
2SrcIndexIntegersource start index
3IndexIntegerstart index
4LenIntegerelement count

Result: stored in self (calling object), returns self for chaining

Remarks:

Stores the result in calling object elements [Index]..[Index+Len-1]. An exception is raised if array borders are overrun or underrun.