Problem 1635. Put Two 1D matrices into one 1D matrix

Example:

If

 input a = [1 2 3 4 5];
 input b = [10 9 8 7 6];

then output will be,

 y_correct = [1 10 2 9 3 8 4 7 5 6];

Solution Stats

69.54% Correct | 30.46% Incorrect
Last Solution submitted on Nov 16, 2024

Solution Comments

Show comments

Problem Recent Solvers134

Suggested Problems

More from this Author16

Problem Tags

Community Treasure Hunt

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

Start Hunting!