Go to the first, previous, next, last section, table of contents.


conj, real, imag

real(comp)
:: Real part of comp.
imag(comp)
:: Imaginary part of comp.
conj(comp)
:: Complex conjugate of comp.
return comp
complex number
[111] A=(2+@i)^3; 
(2+11*@i)
[112] [real(A),imag(A),conj(A)];
[2,11,(2-11*@i)]


Go to the first, previous, next, last section, table of contents.