concatenate multidimentional tables
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everybody, I 'm working my project,and i must add,concatenate 2dimentional arrays. Does anybody know an effective algorithm to do this? Thanks in advantage..
0 Kommentare
Akzeptierte Antwort
Jiro Doke
am 29 Jan. 2011
Since you aren't very descriptive with your question, I would simply suggest reading up on Matrix Concatenation from the documentation:
0 Kommentare
Weitere Antworten (1)
Jan
am 29 Jan. 2011
A surprising question. If you want to concatenate two matrices horizontally:
C = [A, B];
And vertically:
C = [A; B];
Perhaps you have a more complicated problem to solve?! Are you talking of a large cell vektor containing a lot of matrices and suffer from CAT, which fails to use an efficient pre-allocation method?
0 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!