Take the first column from matrix a, then insert the first column from matrix b, and so on. For example:
a = [1 2 3 4]; b = [5 6 7 8];
c = [1 5 2 6 3 7 4 8];
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers93
Suggested Problems
-
Project Euler: Problem 7, Nth prime
1777 Solvers
-
1375 Solvers
-
Return elements unique to either input
815 Solvers
-
Side of an equilateral triangle
7156 Solvers
-
Natural numbers in string form
1952 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The problem description and title have been improved while the test suite has been expanded to include matrices (not just vectors).