Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function LogN(X: TOpenCLMatrix; N: Double): clMatrix; | Result = X^2 from the source |
| 2 | function LogN(X: TOpenCLValue; N: Double): clValue; | Result = X^2 from the source |
| 3 | function LogN(X: TOpenCLVector; N: Double): clVector; | Result = X^2 from the source |
Overload 1: function LogN(X: TOpenCLMatrix; N: Double): clMatrix;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | N | Double | scalar |
Returns: clMatrix
Remarks:
Internally calls clMatrix.LogN
Overload 2: function LogN(X: TOpenCLValue; N: Double): clValue;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
| 2 | N | Double | scalar |
Returns: clValue
Remarks:
Internally calls clValue.LogN
Overload 3: function LogN(X: TOpenCLVector; N: Double): clVector;
Compute X^2 from the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | N | Double | scalar |
Returns: clVector
Remarks:
Internally calls clVector.LogN