How to read 2d data and create a 3D matrix?
1 次查看(过去 30 天)
显示 更早的评论
I have a data which goes like the following:
A(1,1,1).....................A(1000,1,1)
A(1,2,1)......................A(1000,2,1)
...
A(1,110,1).................A(1000,110,1)
A(1,1,2)......................A(1000,1,2)
....
....................................A(1000,110,110)
how can I rehape this data as A 3d matrix? .
0 个评论
采纳的回答
Jan
2021-3-11
B = reshape(A.', 1000, 110, 100);
In general all such transformations can be done by:
B = reshape(permute(reshape(A, [x,y,z]), [a,b,c]), [d,e,f])
In this case the inner reshape can be omitted and the permutation is a transposition.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!