Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Matlab Concatenation of 4x2x4 with 4x2x96

Status
Not open for further replies.

reaman4ever

Newbie level 2
Joined
Oct 10, 2008
Messages
2
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,295
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
 

Maybe something like this:

c(4,2,1:4) = a(4,2,1:4);
c(4,2,5:100) = b(4,2,1:96);
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top