combine 2 matrices to 1 matrix?

7 visualizaciones (últimos 30 días)
Nimasha Pilippange
Nimasha Pilippange el 19 de Feb. de 2022
Editada: Nimasha Pilippange el 19 de Feb. de 2022
I have 2 matrices as A=[ 1 2 3 4 5] and B= [ 6 7 8 9 10] , How can I combine them so I can get C=[1 6 2 7 3 8 4 9 5 10]. I need for a large matrix. But first I will start with a small matrix.
Can anyone help?

Respuesta aceptada

Torsten
Torsten el 19 de Feb. de 2022
Editada: Torsten el 19 de Feb. de 2022
N = numel(A);
C = zeros(2*N,1);
C(1:2:end-1) = A;
C(2:2:end) = B;
  1 comentario
Nimasha Pilippange
Nimasha Pilippange el 19 de Feb. de 2022
Editada: Nimasha Pilippange el 19 de Feb. de 2022
Thank you for the reply. It works fine.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays 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!

Translated by