Equivalent of [C{:}] for vertcat
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Luca Amerio
am 21 Dez. 2016
Kommentiert: Matt J
am 28 Dez. 2016
To concatenate horizontally the content of a cell array we can use the very practice syntax [C{:}]. For example:
A = {(1:3) (4:7)};
B = [A{:}]
B =
1 2 3 4 5 6 7
Is there a way to obtain the same results in the vertical direction (except vertcat of course)
A = {(1:3)' (4:7)'};
B = ?
B =
1
2
3
4
5
6
7
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (3)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!