how to convert cell into matrix
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
HC Song
am 9 Feb. 2016
Beantwortet: Stephen23
am 12 Feb. 2016
assume that a={[1 2 3],[2 3 4;1 2 3]} I want to convert a into a=[1 2 3;2 3 4;1 2 3]. Is there any easy way? thanks
0 Kommentare
Akzeptierte Antwort
Stephen23
am 12 Feb. 2016
>> a={[1 2 3],[2 3 4;1 2 3]}
a =
[1x3 double] [2x3 double]
>> vertcat(a{:})
ans =
1 2 3
2 3 4
1 2 3
0 Kommentare
Weitere Antworten (1)
Kiran
am 12 Feb. 2016
Hi Song,
You can use 'cat' command to concatenate array according to your need.
m = cat(1,a{1},a{2})
Above command will concatenate the array 'a' along vertical direction as you need.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrices and 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!