
- 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
Change the real part of the complex argument in Python
To return the real part of the complex argument, use the numpy.real() method. The method returns the real 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. We will also change the real part of the complex argument using the array.real.
Steps
At first, import the required libraries-
import numpy as np
Create an array using the array() method −
arr = np.array([36.+1.j , 27.+2.j , 68.+3.j , 23.+2.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 real part of the complex argument, use the numpy.real() method in Python. The method returns the real 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("\nReal part...\n",np.real(arr))
Change the real part −
arr.real = 5 print("\nUpdated result...\n",arr)
Example
import numpy as np # Create an array using the array() method arr = np.array([36.+1.j , 27.+2.j , 68.+3.j , 23.+2.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 real part of the complex argument, use the numpy.real() method in Python print("\nReal part...\n",np.real(arr)) # Change the real part arr.real = 5 print("\nUpdated result...\n",arr)
Output
Our Array... [36.+1.j 27.+2.j 68.+3.j 23.+2.j] Dimensions of our Array... 1 Datatype of our Array object... complex128 Shape of our Array... (4,) Real part... [36. 27. 68. 23.] Updated result... [5.+1.j 5.+2.j 5.+3.j 5.+2.j]
- Related Articles
- Return the real part of the complex argument in Python
- Change the imaginary part of the complex argument in Python
- Return the imaginary part of the complex argument in Python
- Return the angle 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
- Haskell Program to get the real part from a Complex number
- Swift Program to get the real part from a Complex number
- Golang Program to get the real part from a Complex number
- Compute the eigenvalues of a complex Hermitian or real symmetric matrix in Python
- Fourier Transform of Complex and Real Functions
- Swift Program to get the imaginary part of the given complex number
- C++ Program to get the imaginary part of the given complex number
- Laplace Transform of Real Exponential and Complex Exponential Functions
- Return the square of the complex-value input in Python
