how to add a row to a matrix?
3 ビュー (過去 30 日間)
古いコメントを表示
A=[1;2;3;4;5]
i wanna add 0 to n row..i tried A(n, :) = 0...but i get this A=[0;2;3;4;5] instead of A=[0;1;2;3;4;5]
what's the problem?
0 件のコメント
採用された回答
KSSV
2022 年 1 月 11 日
編集済み: KSSV
2022 年 1 月 11 日
Note that you want to append zero before to the first element of A. What you did is replace the first element of A with 0.
A=[1;2;3;4;5] ;
A = [0;A]
その他の回答 (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!