Problem 1497. Make combination of two given matrices.

Make a combination of the two given matrices as a given example.
Example:
input1 = [1 2 3; 4 5 6];
input2 = [7 8; 9 10];
output= 1 2 3 1 2 3
4 5 6 4 5 6
7 7 7 8 8 8
9 9 9 10 10 10

Solution Stats

62.0% Correct | 38.0% Incorrect
Last Solution submitted on Nov 30, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers51

Suggested Problems

More from this Author16

Community Treasure Hunt

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

Start Hunting!