With a given matrix A (size m x n) create a matrix B (size m+2 x n+2) so that the matrix A is surrounded by ones:
A = [1 2 3
3 2 1]
B = [1 1 1 1 1
1 1 2 3 1
1 3 2 1 1
1 1 1 1 1]
or
A = 4
B = [ 1 1 1
1 4 1
1 1 1]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers1464
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2820 Solvers
-
Project Euler: Problem 10, Sum of Primes
2127 Solvers
-
Magic is simple (for beginners)
11620 Solvers
-
Side of an equilateral triangle
7120 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2216 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.
nice way to learn about matrix concatenation