Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Conj(X: TOpenCLMatrix): clMatrix; | Return complex conjugate of the source. |
| 2 | function Conj(X: TOpenCLValue): clValue; | Return complex conjugate of the source. |
| 3 | function Conj(X: TOpenCLVector): clVector; | Return complex conjugate of the source. |
Overload 1: function Conj(X: TOpenCLMatrix): clMatrix;
Return complex conjugate of the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Conj
Overload 2: function Conj(X: TOpenCLValue): clValue;
Return complex conjugate of the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLValue | source TOpenCLValue |
Returns: clValue
Remarks:
Internally calls clMatrix.Conj
Examples
var c: clValue;
begin
d.Copy(Cplx(2,3));
c.Conj(d); // d = 2-3i
end;
Overload 3: function Conj(X: TOpenCLVector): clVector;
Return complex conjugate of the source.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: clVector
Remarks:
Internally calls clMatrix.Conj