clValue.Conj Method

function Conj(const Vec: TOpenCLValue): TOpenCLValue;

Conjugate.

#NameTypeDescription
1VecTOpenCLValue

Returns: TOpenCLValue

Remarks:

Conjugate calling object value.

Examples
var c: clValue;
begin
    d.Copy(Cplx(2,3));
    c.Conj(d);   // d = 2-3i
end;