Section: Elementary Functions
y = conj(x)
where x
is an n
-dimensional array of numerical type. The output
is the same numerical type as the input. The conj
function does
nothing to real and integer types.
--> conj(3+4*i) ans = <dcomplex> - size: [1 1] 3 -4i
The conj
function has no effect on real arguments:
--> conj([2,3,4]) ans = <int32> - size: [1 3] Columns 1 to 3 2 3 4
For a double-precision complex array,
--> conj([2.0+3.0*i,i]) ans = <dcomplex> - size: [1 2] Columns 1 to 2 2 -3i 0 -1i