numpy.equal() in Python
numpy.equal(arr1, arr2, out = None, where = True, casting = ‘same_kind’, order = ‘K’, dtype = None, ufunc ‘not_equal’) : This logical function checks for arr1 == arr2 elemen-twise.
Parameters :
arr1 : [array_like]Input array
arr2 : [array_like]Input array
out : [ndarray, optional]Output array with same dimensions as Input array, placed with result.
**kwargs : allows you to pass keyword variable length of argument to a function. It is used when we want to handle named argument in a function.
where : [array_like, optional]True value means to calculate the universal functions(ufunc) at that position, False value means to leave the value in the output alone.
Return :
Returns arr1 == arr2 element-wise
Code 1 :
# Python Program illustrating # numpy.equal() method import numpy as geek a = geek.equal([1., 2.], [1., 3.]) print("Check to be Equal : \n", a, "\n") b = geek.equal([1, 2], [[1, 3],[1, 4]]) print("Check to be Equal : \n", b, "\n") |
Output :
Check to be Equal : [ True False] Check to be Equal : [[ True False] [ True False]]
Code 2 : Comparing data-type using .equal() function
# Python Program illustrating # numpy.equal() method import numpy as geek # Here we will compare Complex values with int a = geek.array([0 + 1j, 2]) b = geek.array([1,2]) d = geek.equal(a, b) print("Comparing complex with int using .equal() : ", d) |
Output :
Comparing complex with int using .equal() : [False True]
Code 3 :
# Python Program illustrating # numpy.not_equal() method import numpy as geek # Here we will compare Float with int values a = geek.array([1.1, 1]) b = geek.array([1, 2]) d = geek.not_equal(a, b) print("\nComparing float with int using .not_equal() : ", d) |
Output :
Comparing float with int using .not_equal() : [ True True]
References :
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.equal.html
.
Recommended Posts:
- Python | Index of Non-Zero elements in Python list
- Python | Merge Python key values to list
- Python | Convert list to Python array
- Important differences between Python 2.x and Python 3.x with examples
- Reading Python File-Like Objects from C | Python
- Python | Add Logging to a Python Script
- Python | Add Logging to Python Libraries
- Python | Set 4 (Dictionary, Keywords in Python)
- Python | Sort Python Dictionaries by Key or Value
- Python | Visualizing O(n) using Python
- JavaScript vs Python : Can Python Overtop JavaScript by 2020?
- Any & All in Python
- Python vs PHP
- max() and min() in Python
- Python Set | pop()
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



