Created originally on Bitbucket by Michael Blume
Was already merged in Bitbucket before import, marked as merged by the import user
numpy allows:
newaxis = None
a = array([1,2,3])
a[newaxis]
array([ [1,2,3] ])
This adds that.
Created originally on Bitbucket by Michael Blume
Was already merged in Bitbucket before import, marked as merged by the import user
numpy allows:
newaxis = None
a = array([1,2,3])
a[newaxis]
array([ [1,2,3] ])
This adds that.