I have two NumPy ndarrays a and b. I want to check if they are equal as if a=b.copy(). However, if I use the == operator
a
b
a=b.copy()
==