How can I merge two rows into one

51 vues (au cours des 30 derniers jours)
012786534
012786534 le 10 Mai 2016
Commenté : Mubashir le 28 Fév 2017
Hi all,
Newbie question here. Let's say I have 6 variables (A-F) and values in 2 rows like this:
A B C D E F
1 2 3
4 5 6
Now I would simply like to merge them into one, like this:
A B C D E F
1 2 3 4 5 6
How would I do that? Thanks
  2 commentaires
Walter Roberson
Walter Roberson le 10 Mai 2016
In what sense are any of the values "in 2 rows" ?
Guillaume
Guillaume le 10 Mai 2016
Please use valid matlab syntax for your examples rather than abstract code that does not mean anything.

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 10 Mai 2016
[A(1,:), B(1,:), C(1,:), D(2,:), E(2,:), F(2,:)]
  3 commentaires
Walter Roberson
Walter Roberson le 27 Fév 2017
unique()
Mubashir
Mubashir le 28 Fév 2017
Thanks...

Connectez-vous pour commenter.

Catégories

En savoir plus sur Variables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by