AND a given scalar value with every element of a masked array in Python

To AND a given scalar value with every element of a masked array, use the ma.MaskedArray.__rand__() method in Python Numpy. A masked array is the combination of a standard numpy.ndarray and a mask. 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.

NumPy offers comprehensive mathematical functions, random number generators, linear algebra routines, Fourier transforms, and more. It supports a wide range of hardware and computing platforms, and plays well with distributed, GPU, and sparse array libraries.

Steps

At first, import the required library −

import numpy as np
import numpy.ma as ma

Create an array with int elements using the numpy.array() method −

arr = np.array([[8, 6, 1, 4], [6, 3, 9, 5], [9, 8, 1, 3], [5, 4, 7, 5]])
print("Array...
", arr) print("\nArray type...
", arr.dtype)

Get the dimensions of the Array −

print("Array Dimensions...
",arr.ndim)

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

maskArr = ma.masked_array(arr, mask =[[1, 1, 0, 0], [ 0, 0, 1, 0], [0, 0, 0, 1], [0, 1, 0, 0]])
print("\nOur Masked Array
", maskArr) print("\nOur Masked Array type...
", maskArr.dtype)

Get the dimensions of the Masked Array −

print("\nOur Masked Array Dimensions...
",maskArr.ndim)

Get the shape of the Masked Array −

print("\nOur Masked Array Shape...
",maskArr.shape)

Get the number of elements of the Masked Array −

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

The scalar −

val = 7
print("\nThe given value..
",val)

To AND a given scalar value with every element of a masked array, use the ma.MaskedArray.__rand__() method −

print("\nResultant Array...
",maskArr.__rand__(val))

Example

import numpy as np
import numpy.ma as ma

# Create an array with int elements using the numpy.array() method
arr = np.array([[8, 6, 1, 4], [6, 3, 9, 5], [9, 8, 1, 3], [5, 4, 7, 5]])
print("Array...
", arr) print("\nArray type...
", arr.dtype) # Get the dimensions of the Array print("\nArray Dimensions...
",arr.ndim) # Create a masked array and mask some of them as invalid maskArr = ma.masked_array(arr, mask =[[1, 1, 0, 0], [ 0, 0, 1, 0], [0, 0, 0, 1], [0, 1, 0, 0]]) print("\nOur Masked Array
", maskArr) print("\nOur Masked Array type...
", maskArr.dtype) # Get the dimensions of the Masked Array print("\nOur Masked Array Dimensions...
",maskArr.ndim) # Get the shape of the Masked Array print("\nOur Masked Array Shape...
",maskArr.shape) # Get the number of elements of the Masked Array print("\nElements in the Masked Array...
",maskArr.size) # The scalar val = 7 print("\nThe given value..
",val) # To AND a given scalar value with every element of a masked array, # use the ma.MaskedArray.__rand__() method print("\nResultant Array...
",maskArr.__rand__(val))

Output

Array...
[[8 6 1 4]
[6 3 9 5]
[9 8 1 3]
[5 4 7 5]]

Array type...
int64

Array Dimensions...
2

Our Masked Array
[[-- -- 1 4]
[6 3 -- 5]
[9 8 1 --]
[5 -- 7 5]]

Our Masked Array type...
int64

Our Masked Array Dimensions...
2

Our Masked Array Shape...
(4, 4)

Elements in the Masked Array...
16

The given value..
7

Resultant Array...
[[-- -- 1 4]
[6 3 -- 5]
[1 0 1 --]
[5 -- 7 5]]
Updated on: 2022-02-07T09:40:13+05:30

211 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements