Complementary error functon of values.
Calculates the complementary error function value for all Src object values and stores the result in calling object. Size and
properties of calling object are adjusted automatically.
Calculates the complementary error function value for all object values in-place.
Example 1
var a: TVec;
ind: Integer;
begin
a := TVec.Create;
try
a.SetIt(False,[1,5.5,-1.6,6]); // a = [1, 5.5, -1.6, 6]
a.Erfc; //
finally
a.Free;
end;
end;
Declaration
Function Erfc(Index, Len: integer): TMtxVec;
Description
Calculates the complementary error function value for calling object elements [Index]..[Index+Len-1] in-place An exception is raised if array borders are overrun or underrun.
Declaration
Function Erfc(Src: TMtxVec; SrcIndex, Index, Len: integer): TMtxVec;
Description
Calculates the complementary error function value for Src object elements [SrcIndex]..[SrcIndex+Len-1] and stores the result in calling object elements [Index]..[Index+Len-1]. An exception is raised if array borders are overrun or underrun.