Multidimensional Array Conversion way

Is there any built in function or direct way to convert a 10 by 1e5 by 10 Array in to 100 by 1e5 array???

 采纳的回答

更多回答(1 个)

Use reshape:
in = rand(10, 1e5, 10);
out = reshape(in, 100, 1e5);

1 个评论

Dear Guillaume,
Thanks for the answer. But this command changes the data. I don't see orderly data. In first page of in array there are 10 rows and 1e5 columns. Keeping the data in the same place i want to change the array of 10 by 1e5 by 10 to 100 by 1e5, which reshape does not perform.

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by