modifying an identity matrix
1 回表示 (過去 30 日間)
古いコメントを表示
I have an identity matrix. I want to put a '1' on the zeros that are right infront of the main diagonal, except at the very last '1'.
Is there an easy way to do it
0 件のコメント
採用された回答
Walter Roberson
2022 年 8 月 9 日
I = eye(7)
r = size(I,1);
newI = diag([ones(1,r-2), 0],-1) + I
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Operating on Diagonal Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!