Make combination of two given matrices. - MATLAB Cody - MATLAB Central

Problem 1497. Make combination of two given matrices.

Difficulty:Rate
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.5% Correct | 37.5% Incorrect
Last Solution submitted on Dec 04, 2024

Problem Comments

Solution Comments

Show comments
LLMs with MATLAB updated to support the latest OpenAI Models
Large Languge model with MATLAB, a free add-on that lets you access...
2
3

Problem Recent Solvers54

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!
Go to top of page