Path: news.mathworks.com!not-for-mail
From: "aasim Azooz" <aasimazooz@yahoo.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: merge two arrays
Date: Fri, 16 May 2008 09:47:10 +0000 (UTC)
Organization: Mosul University
Lines: 33
Message-ID: <g0jl6u$2k6$1@fred.mathworks.com>
References: <g0i33h$ntr$1@fred.mathworks.com>
Reply-To: "aasim Azooz" <aasimazooz@yahoo.com>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1210931230 2694 172.30.248.37 (16 May 2008 09:47:10 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 16 May 2008 09:47:10 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 277505
Xref: news.mathworks.com comp.soft-sys.matlab:468787


"Young Ryu" <ryuyr77@gmail.com> wrote in message 
<g0i33h$ntr$1@fred.mathworks.com>...
> 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!
> 
> 
> 
> 
> Try 
C=[A,B]