2D moving sum of a matrix
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jakob Sievers
am 16 Aug. 2020
Kommentiert: Jakob Sievers
am 16 Aug. 2020
Hi there
How do I perform a moving sum within a matrix? I.e.: the result of each index will be the sum of all surrounding indexes, as defined by window lengths (with some edge effects, as with a regular moving sum).
I could definitely set up some basic loop function but I anticipate having to do this quite often and so I wish to find a smarter/faster solution. And I suspect that there definitely is a smarter solution. Like maybe using filter2 or something?
Thanks in advance for all help!
Cheers
Jakob
1 Kommentar
Akzeptierte Antwort
Bruno Luong
am 16 Aug. 2020
Bearbeitet: Bruno Luong
am 16 Aug. 2020
Assuming A is your array, w is the window size
% testexample
A=randi(10,5)
movsum(movsum(A,w,1),w,2)
% or
conv2(A, ones(w), 'same')
% or
filter2(ones(w), A, 'same')
1 Kommentar
Weitere Antworten (1)
Walter Roberson
am 16 Aug. 2020
conv2(YourMatrix, ones(WindowHeight, WindowWidth))
You might want to add options such as 'valid' to control the size of output and the edge effects.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!