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

1 Ansicht (letzte 30 Tage)
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!

Akzeptierte Antwort

Matt J
Matt J am 10 Mai 2021
output=mat2cell(MP1,1,Set)

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by