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.

How to concatenate matrix in matlab?

Status
Not open for further replies.

mkhan

Full Member level 3
Joined
Mar 17, 2007
Messages
152
Helped
44
Reputation
88
Reaction score
13
Trophy points
1,298
Activity points
2,458
matlab concatenate

Hi Guys,

Can any one tell me How to concatenate matrix in matlab?

BR,

Arif Kan
 

concatenate matlab

Hi Arif,

I think this will help

Code:
q=[];
for i=1:N
   q=[q rand(m,m)]
end

BR,
Oz
 

    mkhan

    Points: 2
    Helpful Answer Positive Rating
matlab concatenation

Thanks mate, u r more than welcome.

Arif Khan
 

matlab concatenate matrix

>> a=[1 2 3]

a =

1 2 3

>> c=[4 5 6]

c =

4 5 6

>> d=[a c]

d =

1 2 3 4 5 6
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top