Delete a plane (2d) within a 3d matrix

4 次查看(过去 30 天)
Hi, I have a 3D matrix with a size of 256x256x256. I would like to delte the first plane (so in 2D) seen from the top, the bottom, from left and from right. How can I compute this using matlab?

采纳的回答

John D'Errico
John D'Errico 2023-5-3
编辑:John D'Errico 2023-5-3
Sometimes it is simpler to take what you want, than it is to delete what you don't want. Here is a matrix:
A = rand(256,256,256);
Clearly you know the size.
B = A(2:255,2:255,2:255);
Which elements are no longer present in B compared to A? If you don't want to create a new matrix, then just assign the result back into the variable A.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

产品


版本

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by