I am using numpy in an Anaconda virtual env , Python 3.3.2 The following code gives me a 'NoneType' object not callable error
I read through this post but I did not find a solution Comparing two numpy arrays for equality, element-wise
np.array_equal(np.array([1, 2]), np.array([1, 2]))
I get the same error with the array_equiv method below
np.array_equiv(np.array([1, 2]), np.array([1, 2]))