Imaginary part of complex number
Y = imag(Z)
example
Y = imag(Z) returns the imaginary part of each element in array Z.
Y
Z
collapse all
Find the imaginary part of the complex number Z.
Z = 2+3i; Y = imag(Z)
Y = 3
Find the imaginary part of each element in vector Z. The imag function acts on Z element-wise.
imag
Z = [0.5i 1+3i -2.2]; Y = imag(Z)
Y = 1×3 0.5000 3.0000 0
Input array, specified as a scalar, vector, matrix, or multidimensional array. imag operates element-wise when Z is nonscalar.
This function fully supports tall arrays. For more information, see Tall Arrays.
This function fully supports GPU arrays. For more information, see Run MATLAB Functions on a GPU (Parallel Computing Toolbox).
This function fully supports distributed arrays. For more information, see Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox).
abs | complex | conj | i | j | real
abs
complex
conj
i
j
real
You have a modified version of this example. Do you want to open this example with your edits?