TSparseMtx.ErfInv Method

Overload List

#SignatureDescription
1function ErfInv: TMtxVec;Inverse error functon of values.
└ indexed: function ErfInv(Index: Integer; Len: Integer): TMtxVec;
2function ErfInv(const Src: TMtxVec): TMtxVec;Calculates the inverse error function value for all Src object values.
└ indexed: function ErfInv(const Src: TMtxVec; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;

Overload 1: function ErfInv: TMtxVec;

Inverse error functon of values.

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

Remarks:

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

Indexed: function ErfInv(Index: Integer; Len: Integer): TMtxVec;

Calculates the inverse error function value 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 ErfInv(const Src: TMtxVec): TMtxVec;

Calculates the inverse error function value for all Src object values.

#NameTypeDescription
1SrcTMtxVecsource TVec or TMtx

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

Remarks:

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

Indexed: function ErfInv(const Src: TMtxVec; SrcIndex: Integer; Index: Integer; Len: Integer): TMtxVec;

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

#NameTypeDescription
1SrcTMtxVecsource TVec or TMtx
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.