Dew MtxVec NET
TMtxVec.Erfc Methods
Summary
Complementary error functon of values.

Class
TMtxVec

Declaration
Function Erfc(Src: TMtxVec): TMtxVec;

Description
Calculates the complementary error function value for all Src object values and stores the result in calling object. Size and Complex properties of calling object are adjusted automatically.
Declaration
Function Erfc: TMtxVec;

Description
Calculates the complementary error function value for all object values in-place.
 See Also 
ErfInv 
Erfc 

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.

Copyright 2008 Dew Research
http://www.dewresearch.com