Given a matrix MTX of any size and an integer N, apply mirrored edges of size N to the matrix.
e.g.
MTX = [ 1 2 3
4 5 6
7 8 9];
N = 1;
OUT = [ 1 1 2 3 3
1 1 2 3 3
4 4 5 6 6
7 7 8 9 9
7 7 8 9 9];
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers4
Suggested Problems
-
752 Solvers
-
Do Fast Fourier Transformation
283 Solvers
-
Find out total non zero element of matrix
287 Solvers
-
Sum of the Multiplication of Vectors
286 Solvers
-
Convert from Fahrenheit to Celsius
27865 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
This is a very peculiar definition of "mirrored" edges. Value are reflected at the top but not the two sides and the bottom.
Not just peculiar but non-uniform as well. Feels more like a pattern the Author made to his liking
That's a bizarre mirror. And as others have pointed out, it seems the first rows are incorrect since they behave differently from the left, right, and bottom mirrors.