ClMtxExpr.Conj Method

Overload List

#SignatureDescription
1function Conj(X: TOpenCLMatrix): clMatrix;Return complex conjugate of the source.
2function Conj(X: TOpenCLValue): clValue;Return complex conjugate of the source.
3function Conj(X: TOpenCLVector): clVector;Return complex conjugate of the source.

Overload 1: function Conj(X: TOpenCLMatrix): clMatrix;

Return complex conjugate of the source.

#NameTypeDescription
1XTOpenCLMatrixsource TOpenCLMatrix

Returns: clMatrix

Remarks:

Internally calls clMatrix.Conj

Overload 2: function Conj(X: TOpenCLValue): clValue;

Return complex conjugate of the source.

#NameTypeDescription
1XTOpenCLValuesource 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.

#NameTypeDescription
1XTOpenCLVectorsource TOpenCLVector

Returns: clVector

Remarks:

Internally calls clMatrix.Conj