フィルターのクリア

Filling the matrix entries

1 回表示 (過去 30 日間)
Teshome Kumsa
Teshome Kumsa 2022 年 5 月 25 日
回答済み: Image Analyst 2022 年 5 月 25 日
I have a matrix to deal with.
A=[1 2 3 4 5 6 7;4 6 7 4 5 8 7; 6 7 8 9 3 5 6];
for i=1:3
A(i,i)=0;
end
In the above simple code I could change A(i,i) by 0. Now I want to start from the last entry(A(3,7)) and change to 0 in the similar way. In simple way A(3,7), A(2,6,) and A(1,5) should be changed by zero. I need it in the loop I started.

採用された回答

Image Analyst
Image Analyst 2022 年 5 月 25 日
Perhaps this:
A=[1 2 3 4 5 6 7;4 6 7 4 5 8 7; 6 7 8 9 3 5 6]
A = 3×7
1 2 3 4 5 6 7 4 6 7 4 5 8 7 6 7 8 9 3 5 6
for k = 1 : 3
A(k, k+4)=0;
end
A % Display result
A = 3×7
1 2 3 4 0 6 7 4 6 7 4 5 0 7 6 7 8 9 3 5 0

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by