- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Compare two Numpy arrays and return the element-wise minimum with fmin()
To compare two arrays and return the element-wise minimum, use the numpy.fmin() method in Python Numpy. Return value is either True or False.
Compare two arrays and returns a new array containing the element-wise maxima. If one of the elements being compared is a NaN, then the non-nan element is returned. If both elements are NaNs then the first is returned. The latter distinction is important for complex NaNs, which are defined as at least one of the real or imaginary parts being a NaN. The net effect is that NaNs are ignored when possible.
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
Creating two 2D numpy array using the array() method. We have inserted elements −
arr1 = np.array([[17, 9, 13],[25, 11, 21]]) arr2 = np.array([[15, 12, 18],[22, 19, 26]])
Display the arrays −
print("Array 1...
", arr1) print("
Array 2...
", arr2)
Get the type of the arrays −
print("
Our Array 1 type...
", arr1.dtype) print("
Our Array 2 type...
", arr2.dtype)
Get the dimensions of the Arrays −
print("
Our Array 1 Dimensions...
",arr1.ndim) print("
Our Array 2 Dimensions...
",arr2.ndim)
Get the shape of the Arrays −
print("
Our Array 1 Shape...
",arr1.shape) print("
Our Array 2 Shape...
",arr2.shape)
To compare two arrays and return the element-wise minimum, use the numpy.fmin() method in Python Numpy. Return value is either True or False −
print("
Result (minimum)...
",np.fmin(arr1, arr2))
Example
import numpy as np # Creating two 2D numpy array using the array() method # We have inserted elements arr1 = np.array([[17, 9, 13],[25, 11, 21]]) arr2 = np.array([[15, 12, 18],[22, 19, 26]]) # Display the arrays print("Array 1...
", arr1) print("
Array 2...
", arr2) # Get the type of the arrays print("
Our Array 1 type...
", arr1.dtype) print("
Our Array 2 type...
", arr2.dtype) # Get the dimensions of the Arrays print("
Our Array 1 Dimensions...
",arr1.ndim) print("
Our Array 2 Dimensions...
",arr2.ndim) # Get the shape of the Arrays print("
Our Array 1 Shape...
",arr1.shape) print("
Our Array 2 Shape...
",arr2.shape) # To compare two arrays and return the element-wise minimum, use the numpy.fmin() method in Python Numpy # Return value is either True or False print("
Result (minimum)...
",np.fmin(arr1, arr2))
Output
Array 1... [[17 9 13] [25 11 21]] Array 2... [[15 12 18] [22 19 26]] Our Array 1 type... int64 Our Array 2 type... int64 Our Array 1 Dimensions... 2 Our Array 2 Dimensions... 2 Our Array 1 Shape... (2, 3) Our Array 2 Shape... (2, 3) Result (minimum)... [[15 9 13] [22 11 21]]
- Related Articles
- Compare two arrays and return the element-wise minimum in Numpy
- Compare two Numpy arrays and return the element-wise minimum ignoring NaNs
- Compare two Numpy arrays with some Inf values and return the element-wise minimum
- Compare two arrays with some NaN values and return the element-wise minimum in Numpy
- Compare two Numpy arrays and return the element-wise maximum with fmax()
- Compare two arrays and return the element-wise maximum in Numpy
- Compare two arrays with some Inf values and return the element-wise maximum in Numpy
- Compare two arrays and return the element-wise maximum ignoring NaNs in Numpy
- Return element-wise string concatenation for two arrays of string in Numpy
- Compute the bit-wise AND of two arrays element-wise in Numpy
- Compute the bit-wise AND of two Two-Dimensional arrays element-wise in Numpy
- Compute the bit-wise OR of two Numpy arrays element-wise
- Compute the bit-wise XOR of two Numpy arrays element-wise
- Compute the bit-wise AND of two boolean arrays element-wise in Numpy
- Compute the bit-wise AND of two One-Dimensional Numpy arrays element-wise
