how to merge two matrices

2 vues (au cours des 30 derniers jours)
Ede gerlderlands
Ede gerlderlands le 18 Nov 2012
I have two matrices with a= 20x6 and b=20x3 how can I merge them as 20x9.
thanks.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 18 Nov 2012
Modifié(e) : Azzi Abdelmalek le 18 Nov 2012
Horizontal concatenation
c=[a b]
example
for horizontal concatenation
a=rand(20,6);
b=rand(20,3);
c=[a b]
for vertical concatenation
a=rand(6,20)
b=rand(3,20)
c=[a;b]
  1 commentaire
Ede gerlderlands
Ede gerlderlands le 18 Nov 2012
Thanks.....

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by