Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Concatenation of 4x2x4 with 4x2x96
Date: Mon, 26 Oct 2009 03:44:02 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 9
Message-ID: <hc35u2$kue$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-03-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1256528642 21454 172.30.248.38 (26 Oct 2009 03:44:02 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Mon, 26 Oct 2009 03:44:02 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 824205
Xref: news.mathworks.com comp.soft-sys.matlab:579969


Hello I need to combine two numeric matrices
size(a)=4x2x4 and
size(b)=4x2x96 to make matrix c
size(c)=4x2x100

I have tried c=[a b]; c=[a,b]; c=[a;b];

but they don't work. What is the correct form?
thank you very much