def median(self, axis=None): ''' Compute tha median along the specified axis. :param axis: (*int*) Axis along which the standard deviation is computed. The default is to compute the standard deviation of the flattened array. returns: (*array_like*) Median result ''' if axis is None: return ArrayMath.median(self.array) else: return MIArray(ArrayMath.median(self.array, axis))
def median(self, axis=None): if axis is None: return ArrayMath.median(self.array) else: return MIArray(ArrayMath.median(self.array, axis))