putting several matrices as one
Show older comments
i have got one matrix with 2 columns and another with 5. i want to put them togehter as one matrix with 7 columns. overall the rows are similar in all of them
Accepted Answer
More Answers (1)
Cedric
on 10 Oct 2017
A = randi( 10, 3, 2 )
B = randi( 10, 3, 5 )
C = [A, B]
Categories
Find more on Target Computer Setup in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!