Path: news.mathworks.com!not-for-mail
From: "Young Ryu" <ryuyr77@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: merge two arrays
Date: Thu, 15 May 2008 19:32:01 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 29
Message-ID: <g0i33h$ntr$1@fred.mathworks.com>
Reply-To: "Young Ryu" <ryuyr77@gmail.com>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1210879921 24507 172.30.248.35 (15 May 2008 19:32:01 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 15 May 2008 19:32:01 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 780721
Xref: news.mathworks.com comp.soft-sys.matlab:468684


Hi-

I have two arrays:
A=
1 2
3 4
5 6

and
B=
7 8
9 10

I tried to merge two arrays like:
C=
1 2
3 4
5 6
7 8
9 10

Is there any simple method for getting C?

Thanks!