A certain convolution step involves an elementwise multipication between two 3x3 matrices and taking the resulting sum of the elements.
Given a 3x3 kernel matrix K, find its convolution with a 3x3 subsection of a given matrix A. The subsection will be indicated by r and c, the row-column location of the top left corner element.
For example, let K = [
], A = [
] and r = 2, c = 3. Then the relevant 3x3 subsection of A starts at row 2 and column 3, i.e. with the element 7. Thus, the 3x3 subsection is S = [
]. The element-wise product of S with the kernel K is [
], and the convolution y is the sum of these elements, making y = 45.
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers32
Suggested Problems
-
1830 Solvers
-
Back to basics 6 - Column Vector
1111 Solvers
-
Try 1.5.4: Celsius to Fahrenheit
871 Solvers
-
Find the dimensions of a matrix
564 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2210 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!