I want to calculate the trimmed mean along an axis, without explicit looping. So it should do the same as:
arr=np.random.randn(3,10000)
arr[:,:5]+=999
arr=np.arange(3)[:,None]+arr
out=np.zeros(arr.shape[0])
for i in range(arr.shape[0]):
col=arr[i,:]
m=np.abs(col-col.mean())<2*col.std()
out[i]=col[m].mean()
print out
print arr.mean(1)
Results in:
[-0.01085947 0.99187648 1.98009922]
[ 0.48822938 1.49126719 2.47951973]
<in line 4 instead of>? I think you should test your function and post the expected input and output. – user545424 May 11 '12 at 17:00