You are here:
Symbol Reference >
AbstractMtxVec Namespace
>
Classes
>
TMtxVec Class
>
public
>
Conj Method
>
TMtxVec.Conj Method ()
MtxVec VCL
Example
TMtxVec.Conj Method ()
var
c: TVec;
begin
CreateIt
(c);
try
c.SetIt(True,[1,2,3,4]);
// c = [1+2i, 3+4i]
c.Conj;
// c = [1-2i, 3-4i]
finally
FreeIt
(c);
end
;
end
;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.