Mixing and merge two vectors
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lila wagou
el 23 de Mayo de 2017
Respondida: Star Strider
el 23 de Mayo de 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
0 comentarios
Respuesta aceptada
Star Strider
el 23 de Mayo de 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
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Fourier Analysis and Filtering en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!