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

61.76% Correct | 38.24% Incorrect
Last Solution submitted on Mar 24, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers52

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!