How can I make each cell array consistent in length?

2 Ansichten (letzte 30 Tage)
Farshid Daryabor
Farshid Daryabor am 2 Mär. 2020
Kommentiert: Farshid Daryabor am 2 Mär. 2020
I'm really grateful for anyone telling me how to make cell arrays equal in length (please find attached). The following code doesn'y work.
N = cellfun(@numel, T_mon);
>> M = min(N);
>> newN = M * ceil(N / M);
>> padfun = @(k) [T_mon{k} zeros(1, newN(k) - N(k))] ;
>> T_mon_new = arrayfun(padfun, 1:numel(T_mon) , 'un', 0) ;
Error using horzcat
Dimensions of matrices being concatenated are not consistent.
Error in @(k)[T_mon{k},zeros(1,newN(k)-N(k))]

Akzeptierte Antwort

Alex Mcaulley
Alex Mcaulley am 2 Mär. 2020
Do you mean this?
N = cellfun(@numel, T_mon);
M = max(N);
T_mon_new = cellfun(@(a) [a; zeros(M - numel(a),1)],T_mon,'uni',0);
  3 Kommentare
Alex Mcaulley
Alex Mcaulley am 2 Mär. 2020
Yes, just changing:
N = cellfun(@numel, T_mon);
M = max(N);
T_mon_new = cellfun(@(a) [a; nan(M - numel(a),1)],T_mon,'uni',0);
Farshid Daryabor
Farshid Daryabor am 2 Mär. 2020
Thanks, I really appreciate

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Types 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