Combining two matrices into one

6 views (last 30 days)
Thomas
Thomas on 17 Sep 2013
I need to combine the two matrices a and b to yield c.
a = [1;0] and b = [0;1]
and for c I need to matrix to look like this c = [1,0;0,1] not [1;1]
I was using c = a + b, is there a way I can combine the matrices without adding the numbers together?
Thank you for your time.
  1 Comment
Thomas
Thomas on 17 Sep 2013
Nevermind, I forgot I could just stack them with c = [a,b]

Sign in to comment.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 17 Sep 2013
Edited: Andrei Bobrov on 17 Sep 2013
c = [a,b] % EDIT
Please read about concatenating arrays

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!