putting several matrices as one
古いコメントを表示
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
採用された回答
その他の回答 (1 件)
Cedric
2017 年 10 月 10 日
A = randi( 10, 3, 2 )
B = randi( 10, 3, 5 )
C = [A, B]
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!