Get the Imaginary part from the masked array in Numpy


To get the imaginary part from the masked array, use the ma.MaskedArray.imag attribute in Numpy. This property is a view on the imaginary part of this MaskedArray.

A mask is either nomask, indicating that no value of the associated array is invalid, or an array of booleans that determines for each element of the associated array whether the value is valid or not.

Steps

At first, import the required library −

import numpy as np
import numpy.ma as ma

Creating an array of complex number elements using the numpy.array() method −

arr = np.array([68.+4.j , 49.+7.j , 120.+2.j , 64.+0.j])
print("Array..
",arr) print("
Get the imaginary part",arr.imag) print("
Get the datatype
",arr.dtype)

Create a masked array and mask some of them as invalid −

maskArr = ma.masked_array(arr, mask =[False, False, True, False])
print("
Our Masked Array
", maskArr) print("
Our Masked Array type...
", maskArr.dtype)

Get the dimensions of the Masked Array −

print("
Our Masked Array Dimensions...
",maskArr.ndim)

Get the shape of the Masked Array −

print("
Our Masked Array Shape...
",maskArr.shape)

Get the number of elements of the Masked Array −

print("
Elements in the Masked Array...
",maskArr.size)

To get the imaginary part from the masked array, use the ma.MaskedArray.imag attribute in Numpy −

print("
Get the imaginary part...
",maskArr.imag)

Example

import numpy as np
import numpy.ma as ma

# Creating an array of complex number elements using the numpy.array() method
arr = np.array([68.+4.j , 49.+7.j , 120.+2.j , 64.+0.j])
print("Array..
",arr) print("
Get the imaginary part",arr.imag) print("
Get the datatype
",arr.dtype) print("
The number of elements
",arr.size) # Create a masked array and mask some of them as invalid maskArr = ma.masked_array(arr, mask =[False, False, True, False]) print("
Our Masked Array
", maskArr) print("
Our Masked Array type...
", maskArr.dtype) # Get the dimensions of the Masked Array print("
Our Masked Array Dimensions...
",maskArr.ndim) # Get the shape of the Masked Array print("
Our Masked Array Shape...
",maskArr.shape) # Get the number of elements of the Masked Array print("
Elements in the Masked Array...
",maskArr.size) # To get the imaginary part from the masked array, use the ma.MaskedArray.image attribute in Numpy print("
Get the imaginary part...
",maskArr.imag)

Output

Array..
[ 68.+4.j 49.+7.j 120.+2.j 64.+0.j]

Get the imaginary part [4. 7. 2. 0.]

Get the datatype
complex128

The number of elements
4

Our Masked Array
[(68+4j) (49+7j) -- (64+0j)]

Our Masked Array type...
complex128

Our Masked Array Dimensions...
1

Our Masked Array Shape...
(4,)

Elements in the Masked Array...
4

Get the imaginary part...
[4.0 7.0 -- 0.0]

Updated on: 22-Feb-2022

72 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements