Effacer les filtres
Effacer les filtres

Mixing and merge two vectors

33 vues (au cours des 30 derniers jours)
Lila wagou
Lila wagou le 23 Mai 2017
Dear all, i want to mix and merge two vector in a one,
A = [1 2 3 4];
B = [5 6 7 8];
to get
C = [1 5 2 6 3 7 4 8];
Thanks in advance

Réponse acceptée

Star Strider
Star Strider le 23 Mai 2017
This works:
A = [1 2 3 4];
B = [5 6 7 8];
C = reshape([A; B], [], 1)';
C =
1 5 2 6 3 7 4 8

Plus de réponses (0)

Catégories

En savoir plus sur Software Development Tools 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