how can i concatenate matrices of diffrent data types and dimensions?
1 回表示 (過去 30 日間)
古いコメントを表示
concatenating matrices
1 件のコメント
the cyclist
2016 年 5 月 18 日
This isn't Twitter. Please describe what you are trying to do in some detail, to help us help you.
回答 (2 件)
Todd Leonhardt
2016 年 5 月 18 日
These are arrays that can contain data of varying types and sizes.
If you have two matrices, say M1 and M2, you can combine them into a cell array like so:
C = {M1 M2}
or
C = {M1; M2}
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!