Problem 51211. apply zero padding to a matrix
Given a matrix of any size apply a zero padding around it of the size N.
e.g.
MTX = [ 1 2;
3 4]
N = 1;
OUT = [ 0 0 0 0;
0 1 2 0;
0 3 4 0;
0 0 0 0]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers24
Suggested Problems
-
1735 Solvers
-
Arrange Vector in descending order
13061 Solvers
-
Compute a dot product of two vectors x and y
1042 Solvers
-
Duplicate each element of a vector.
633 Solvers
-
Split a string into chunks of specified length
2033 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!