Answers for "compare np arrays python"

0

np.array_equal

# np.array_equal checks whether two arrays have the same
# shape and all elements values
Posted by: Guest on June-30-2020
0

compare 2 np arrays

import numpy as np
  
an_array = np.array([[1, 2], [3, 4]])
another_array = np.array([[1, 2], [3, 4]])
  
comparison = an_array == another_array
equal_arrays = comparison.all()
  
print(equal_arrays)
Posted by: Guest on November-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language