how to do running mean?

3 Ansichten (letzte 30 Tage)
Lilya
Lilya am 22 Okt. 2020
Kommentiert: Lilya am 25 Okt. 2020
Hi all,
I have a 3d matrix with a dimension of 21*41*273, for which I want to do the running mean over the third dimension (273 days) for every 4 days.
Any help would be appreciated.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 22 Okt. 2020
Try something like this
M = rand(21, 41, 273);
M_new = movmean(M, [0 3], 3, 'Endpoints', 'discard');
M_new = M_new(:,:,1:4:end);
  5 Kommentare
Ameer Hamza
Ameer Hamza am 25 Okt. 2020
Yes, It means that it takes data from the current value and the next three values.
Lilya
Lilya am 25 Okt. 2020
Thank you!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by