Closed ocefpaf closed 9 years ago
Similar problem here:
import numpy as np
import biggus
arrb = biggus.NumpyArrayAdapter(np.array([1, 2, 3.]))
arrn = np.array([1, 2, 3.])
arrn + arrb
array([ 2., 4., 6.])
but,
arrb + arrn
<_Elementwise shape=(3) dtype=dtype('float64')>
I was expecting that all operation with a biggus array would return another biggus array.
@ocefpaf - sounds like a bug, not a documentation thing...
@ocefpaf - sounds like a bug, not a documentation thing...
It depends on the order of your reading :wink: (Sorry I could not resist.)
This took almost 2 hours of my afternoon yesterday:
But biggus is OK with this: