Tagged Questions
1
vote
1answer
3k views
How should I perform this binning and averaging in MATLAB?
I am trying to perform a binning average. I am using the code:
Avg = mean(reshape(a,300,144,27));
AvgF = squeeze(Avg);
The last line gets rid of singleton dimensions.
So as can be seen I am ...