You are here: Symbol Reference > clMtxExpr Namespace > Classes > clVector Record > public > Conj Method > clVector.Conj Method ()
MtxVec VCL
ContentsIndex
PreviousUpNext
clVector.Conj Method ()

Conjugate.

Pascal
function Conj: TOpenCLMtxVec; overload;

Conjugate all calling object elements in-place.

var c: clVector; begin c.CopyFromArray(TSingleArray.Create(1,2,3,4)); // c = [1+2i, 3+4i] c.Conj; // c = [1-2i, 3-4i] end;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!