How to Add Values from One Matrix in between the values of another?

1 Ansicht (letzte 30 Tage)
Let's say you have a matrix a=[ 1 3 5 7 9 11] and b = [ 2 4 6 8 10]. How would you go about merging the two matricies so that every value of b goes in between the values of a? So the result would look like c = [ 1 2 3 4 5 6 7 8 9 10 11]. These can be any number, not specific to even/odd.

Akzeptierte Antwort

Star Strider
Star Strider am 2 Aug. 2017
This works:
a = [ 1 3 5 7 9 11];
b = [ 2 4 6 8 10];
c = zeros(1, numel(a)+numel(b));
c(1:2:end) = a;
c(2:2:end) = b;
c =
1 2 3 4 5 6 7 8 9 10 11

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by