Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
how to merge the four arrays into one array
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how to merge the four arrays into one array
1 Kommentar
Daniel Shub
am 25 Sep. 2012
I am closing this question since there is nowhere near enough information to do anything other than guess.
Antworten (2)
Wayne King
am 25 Sep. 2012
Bearbeitet: Wayne King
am 25 Sep. 2012
It depends what you mean by merge. Are these arrays the same size?
Look at cat
x = randn(2,2);
y = randn(2,2);
z = randn(2,2);
w = randn(2,2);
A = cat(1,x,y,z,w);
If this is not what you need, then please give us a simple example that illustrates your question.
0 Kommentare
Image Analyst
am 25 Sep. 2012
wideArray = [a, b, c, d]; % Stitch together horizontally.
tallArray = [a; b; c; d]; % Stitch together vertically.
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!