Consider the following snippet:
import numpy as np
import numpy.ma as ma
x = np.zeros((10,))
ma.median(x, axis=None)
The last line throws a
TypeError: cannot perform reduce with flexible type
using version 1.9.1, but works with versions prior to 1.9.0 (i didn't try 1.9.0). Is this expected behavior?
Many thanks
Consider the following snippet:
The last line throws a
using version 1.9.1, but works with versions prior to 1.9.0 (i didn't try 1.9.0). Is this expected behavior?
Many thanks