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