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

1 次查看(过去 30 天)
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.

采纳的回答

Star Strider
Star Strider 2017-8-2
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by