Insert numbers of a matrix B in matrix A (only in odd indexes).

I have a matrix A=[3 8 13 18], i=4 and another one B=[5.5 10.5 15.5], j=3. Would like to get the code to create the matrix C from A and B so C=[3 5.5 8 10.5 13 15.5 18], k=7

 Accepted Answer

More Answers (1)

Since ‘C’ is the concatenation of ‘A’ and ‘B’ sorted in ascending order, another option would be:
C = sort([A B]);

Categories

Products

Community Treasure Hunt

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

Start Hunting!