Problem 43281. Two dimensional moving average
A=[1 2 3 4 5
1 2 2 2 3
2 3 3 3 4
1 1 4 4 2]B=[1 1;1 1]; % This is can be used for weight factor of moving average
Calculate two dimensional moving averaged matrix of A
y(i,j)=A(i,j)*B(1,1)+A(i+1,j)*B(2,1)+A(i,j+1)*B(1,2)+A(i+1,j+1)*B(2,2)
As a result,
ans =
1.5000 2.2500 2.7500 3.5000
2.0000 2.5000 2.5000 3.0000
1.7500 2.7500 3.5000 3.2500
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers46
Suggested Problems
-
Find the sum of all the numbers of the input vector
53699 Solvers
-
Getting the indices from a vector
11758 Solvers
-
Find the maximum number of decimal places in a set of numbers
3367 Solvers
-
Matlab Basics II - Extract last 3 elements of a vector
260 Solvers
-
Implement zero-based indexing for Matrices
86 Solvers
More from this Author27
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!