how to combine these 2 matrix
1 回表示 (過去 30 日間)
古いコメントを表示
my latent values is 10x400 and results value is 10*9 how to combine these matrics and make them into 10x409 matrics
0 件のコメント
採用された回答
Vishal Rane
2013 年 6 月 11 日
a = ones(10,400);
b = ones(10,9);
c = [ a, b]; % c is a 10x409 size matirx
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!