
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Return the imaginary part of the complex argument in Python
To return the imaginary part of the complex argument, use the numpy.imag() method. The method returns the imaginary component of the complex argument. If val is real, the type of val is used for the output. If val has complex elements, the returned type is float. The 1st parameter, val is the input array
Steps
At first, import the required libraries -
import numpy as np
Create an array using the array() method −
arr = np.array([36.+5.j , 27.+3.j , 68.+2.j , 23.+7.j])
Display the array −
print("Our Array...\n",arr)
Check the Dimensions −
print("\nDimensions of our Array...\n",arr.ndim)
Get the Datatype −
print("\nDatatype of our Array object...\n",arr.dtype)
Get the Shape −
print("\nShape of our Array...\n",arr.shape)
To return the imaginary part of the complex argument, use the numpy.imag() method in Python. The method returns the imaginary component of the complex argument. If val is real, the type of val is used for the output. If val has complex elements, the returned type is float. The 1st parameter, val is the input array −
print("\nResult (Imaginary part)...\n",np.imag(arr))
Example
import numpy as np # Create an array using the array() method arr = np.array([36.+5.j , 27.+3.j , 68.+2.j , 23.+7.j]) # Display the array print("Our Array...\n",arr) # Check the Dimensions print("\nDimensions of our Array...\n",arr.ndim) # Get the Datatype print("\nDatatype of our Array object...\n",arr.dtype) # Get the Shape print("\nShape of our Array...\n",arr.shape) # To return the imaginary part of the complex argument, use the numpy.imag() method in Python print("\nResult (Imaginary part)...\n",np.imag(arr))
Output
Our Array... [36.+5.j 27.+3.j 68.+2.j 23.+7.j] Dimensions of our Array... 1 Datatype of our Array object... complex128 Shape of our Array... (4,) Result (Imaginary part)... [5. 3. 2. 7.]
- Related Articles
- Change the imaginary part of the complex argument in Python
- Return the real part of the complex argument in Python
- Return the angle of the complex argument in Python
- Change the real part of the complex argument in Python
- Return the angle of the complex argument in degrees in Python
- Return the angle of the complex argument in radians in Python
- Swift Program to get the imaginary part of the given complex number
- C++ Program to get the imaginary part of the given complex number
- Return real parts if input is complex with all imaginary parts close to zero in Python
- Return the square of the complex-value input in Python
- Get the Imaginary part from the masked array in Numpy
- Return the reciprocal of the argument element-wise in Numpy
- Return the base 2 logarithm for complex value input in Python
- How to construct a complex tensor with the given real and imaginary parts in PyTorch?
- Haskell Program to create Complex numbers from given imaginary parts
