Concatenate Cell array of doubles along rows
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdelrahman Abdeltawab
am 5 Nov. 2016
Bearbeitet: Walter Roberson
am 5 Nov. 2016
i have a cell array that looks like the following (4X2) in attached image
I want to concatenate adjacent values in rows
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 5 Nov. 2016
arrayfun(@(COLIDX) vertcat(YourCell{:,COLIDX}), 1:size(YourCell,2), 'Uniform', 0)
4 Kommentare
Walter Roberson
am 5 Nov. 2016
arrayfun(@(ROWIDX) vertcat(YourCell{ROWIDX,:}), (1:size(YourCell,1)).', 'Uniform', 0)
Abdelrahman Abdeltawab
am 5 Nov. 2016
Bearbeitet: Walter Roberson
am 5 Nov. 2016
Weitere Antworten (1)
KSSV
am 5 Nov. 2016
Let C be your cell array..
iwant{1} = [C{1,1} C{2,1}] ;
iwant{2} = [C{1,2} C{2,2}] ;
2 Kommentare
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!