Rebuilding a 3D matrix

1 次查看(过去 30 天)
Hi everyone!
I am doing an operation where I will have to follow these algorithm steps. Can anyone please let me know how to perform this?
Any feedback will be grately appreaciated!

采纳的回答

Stephen23
Stephen23 2023-2-27
编辑:Stephen23 2023-2-27
A1 = A(:,:,[2,5,7]);
A2 = A(:,:,[1,6,10]);
A3 = A(:,:,[3,4,8,9]);
.. change values
B = nan(10,10,10);
B(:,:,[2,5,7]) = A1;
B(:,:,[1,6,10]) = A2;
B(:,:,[3,4,8,9]) = A3;

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by