how to add to matrix of different dimensions
3 ビュー (過去 30 日間)
古いコメントを表示
Ex: a=3*10; b=b+a; in the first iteration b is getting 3*10, next iteration if a is 7*10 getting error. how to rectify
6 件のコメント
Walter Roberson
2018 年 6 月 27 日
If b is 3 x 10 and a is 4 x 10 and you want to combine into a 7 x 10 array, then
b = [b; a];
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!