clMatrix.ThreshTop Method

Overload List

#SignatureDescription
1function ThreshTop(const Src: TOpenCLMtxVec; Value: Double): TOpenCLMtxVec;Perform threshold operation on all Src object values.
└ indexed: function ThreshTop(const Vec: TOpenCLMtxVec; Value: Double; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;
2function ThreshTop(Value: Double): TOpenCLMtxVec;Threshold top operation.
└ indexed: function ThreshTop(Value: Double; Index: Integer; Len: Integer): TOpenCLMtxVec;

Overload 1: function ThreshTop(const Src: TOpenCLMtxVec; Value: Double): TOpenCLMtxVec;

Perform threshold operation on all Src object values.

#NameTypeDescription
1SrcTOpenCLMtxVec
2ValueDoublescalar

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

Remarks:

Store the results in calling object. Size and clMatrix.Complex properties of the calling object are adjusted automatically.

Indexed: function ThreshTop(const Vec: TOpenCLMtxVec; Value: Double; VecIndex: Integer; Index: Integer; Len: Integer): TOpenCLMtxVec;

Perform a threshold operation Vec elements [VecIndex]..[VecIndex+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVec
2ValueDoublescalar
3VecIndexInteger
4IndexIntegerstart index
5LenIntegerelement count

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

Remarks:

Store the results in the calling object elements [Index]..[Index+Len-1]. Size and clMatrix.Complex properties of the calling object must be set explicitly. An exception is raised if array borders are overrun/underrun.

Overload 2: function ThreshTop(Value: Double): TOpenCLMtxVec;

Threshold top operation.

#NameTypeDescription
1ValueDoublescalar

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

Remarks:

Perform threshold operation on all calling object values. The Value parameter is an upper bound for threshold operation. All values bigger than Value will be replaced with Value.

Examples
var a: clMatrix;
begin
    a.CopyFromArray(2,2,TSingleArray.Create(2,0.1,3,4));
    a.Threshtop(0.2); // a = [0.2,0.1,0.2,0.2]
end;
See Also: clMatrix.ThreshTop

Indexed: function ThreshTop(Value: Double; Index: Integer; Len: Integer): TOpenCLMtxVec;

Perfrom the threshold operation on calling object values [Index]..[Index+Len-1].

#NameTypeDescription
1ValueDoublescalar
2IndexIntegerstart index
3LenIntegerelement count

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

Remarks:

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