To check that the array is almost 0, I use np.testing.assert_almost_equal:
np.testing.assert_almost_equal(v, np.zeros(len(v)))
This allocates a new vector just for the test.
Is there a better way?
To check that the array is almost 0, I use np.testing.assert_almost_equal:
np.testing.assert_almost_equal(v, np.zeros(len(v)))
This allocates a new vector just for the test.
Is there a better way?
Copyright © 2021 Jogjafile Inc.
You don't need to pass an array, a scalar is enough and numpy will broadcast:
As a bonus, this works with any number of dimensions.