How to perform element-wise Boolean operations on NumPy arrays?

Learn, how to perform element-wise Boolean operations on NumPy arrays? By Pranit Sharma Last updated : October 10, 2023

NumPy is an abbreviated form of Numerical Python. It is used for different types of scientific operations in python. Numpy is a vast library in python which is used for almost every kind of scientific or mathematical operation. It is itself an array which is a collection of various methods and functions for processing the arrays.

In programming, we sometimes use some specific values that only have two values, either True or False. These values are known as Boolean values.

Problem statement

Suppose that we are given a NumPy array that contains some integer values and we need to create a mask that masks elements with values that lie between a certain range.

Performing element-wise Boolean operations on NumPy arrays

For this purpose, we will use the simple OR operation which will help us to create a mask and filter out those values that lie in a specific range.

Let us understand with the help of an example,

Python program to perform element-wise Boolean operations on NumPy arrays

# Import numpy
import numpy as np

# Creating a numpy array
arr = np.array([10,20,30,40,50,60,70,80,90,100])

# Display original array
print("Original array:\n",arr,"\n")

# performing boolean operation on each element
res = (arr>30)

print("Result:\n",res)

Output

The output of the above program is:

Example: How to perform element-wise Boolean operations on NumPy arrays?

Python NumPy Programs »


Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.