Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function ThreshBottom(X: TOpenCLMatrix; Value: Double): clMatrix; | Limit the smallest value in the source data. |
| 2 | function ThreshBottom(X: TOpenCLValue; Value: Double): clValue; | Limit the smallest value in the source data. |
| 3 | function ThreshBottom(X: TOpenCLVector; Value: Double): clVector; | Limit the smallest value in the source data. |
Overload 1: function ThreshBottom(X: TOpenCLMatrix; Value: Double): clMatrix;
Limit the smallest value in the source data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | Value | Double | scalar |
Returns: clMatrix
Remarks:
Internally calls clMatrix.ThreshBottom
Overload 2: function ThreshBottom(X: TOpenCLValue; Value: Double): clValue;
Limit the smallest value in the source data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
| 2 | Value | Double | scalar |
Returns: clValue
Remarks:
Internally calls clValue.ThreshBottom
Examples
var a,b: clValue;
begin
b.Copy(0.1);
a.ThreshBottom(b, 0.2); // a = [0.2]
end;
Overload 3: function ThreshBottom(X: TOpenCLVector; Value: Double): clVector;
Limit the smallest value in the source data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | Value | Double | scalar |
Returns: clVector
Remarks:
Internally calls clVector.ThreshBottom