Convert each cell to 4D

1 Ansicht (letzte 30 Tage)
Joeli Rakaria
Joeli Rakaria am 21 Dez. 2020
Kommentiert: Joeli Rakaria am 22 Dez. 2020
How to convert each cell to 4D? As in the form 11x6000x1x830 for the 1st cell and likewise for the rest.

Antworten (1)

the cyclist
the cyclist am 21 Dez. 2020
The best method to do this might depend on how generalizable you need this to be to other cell arrays (with different internal array sizes), but this will work for your cell array:
c2 = cellfun(@(x)reshape(x,11,6000,1,[]),c,'UniformOutput',false);
where c is your input cell array.
  1 Kommentar
Joeli Rakaria
Joeli Rakaria am 22 Dez. 2020
Thanks for your help. Works well

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by