Version MATLAB 2020b: How can i convert an array to cell array with specific size?

1 次查看(过去 30 天)
I have an array which is as follows:
MP1=[1 5 3 1 3 4 2 3 1 4 2 2 3 2 6 5 2 2 3 3 6 3 1 2 3 2 3 3 1 2 2 2 4 6 4 2 1 3 3 6 2 2 2 6 1 4 1 6 2 3 2 2 6 2 4];
This array needs to be convered to a cell of size (1 ,10) where each output in the cell should take values from MP1 sequentially and follow the size of each value in the following set:
Set=[6 5 5 5 6 6 5 5 6 6];
The final output will be:
output=[{[1 5 3 1 3 4]},{[2 3 1 4 2]},{[2 3 2 6 5]},{[2 2 3 3 6]},{[3 1 2 3 2 3]},{[3 1 2 2 2 4]},{[6 4 2 1 3]},{[3 6 2 2 2]},{[6 1 4 1 6 2]},{[3 2 2 6 2 4]}];
How can i do that?
Thanks!

采纳的回答

Matt J
Matt J 2021-5-10
output=mat2cell(MP1,1,Set)

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by