I have a matix of 117 by 4. I need to make it 160 by 4 by adding 43 rows of zeros.
1 回表示 (過去 30 日間)
古いコメントを表示
How can I do this by using matlab command or a code line.
0 件のコメント
採用された回答
Star Strider
2018 年 11 月 9 日
Try this:
M = rand(117,4); % Create Matrix
M = [M; zeros(43,4)]; % Add ‘zeros’
0 件のコメント
その他の回答 (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!