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

1 view (last 30 days)
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.

Accepted Answer

Star Strider
Star Strider on 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

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!