Adding a second layer to a 2D matrix
11 views (last 30 days)
Show older comments
Alex Flores
on 16 Apr 2017
Answered: Image Analyst
on 16 Apr 2017
I have having issues with trying to figure out how to add a second layer to a 2d matrix. I created a 4x4 matrix of random integers from -10 to 10. Now I have to add a second layer to the matrix so that it is 4x4x2. The new layer needs to be all zeros and it has to be done within one line of code. I have tried several things but nothing seems to work. Thanks in advance!
0 Comments
Accepted Answer
Image Analyst
on 16 Apr 2017
Try cat(3,...)
newMatrix = cat(3, old2DMatrix, second2DLayer); % Will be 4x4x2
Use your own variable names, needless to say.
0 Comments
More Answers (0)
See Also
Categories
Find more on Image Data Workflows in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!