Lower Triangle of Matrix

7 ビュー (過去 30 日間)
Alex Baham
Alex Baham 2020 年 4 月 2 日
コメント済み: John D'Errico 2020 年 4 月 2 日
I know that if you have a matrix A, triu(A) will fill the lower triangular matrix with zeros, but is there a way to make that ones instead of zeros? Thanks!

採用された回答

John D'Errico
John D'Errico 2020 年 4 月 2 日
No. You cannot tell triu to fill with ones instead of zeros. That does not mean what you are asking is impossible, just that you need to be creative in how you use these tools.
A = magic(5)
A =
17 24 1 8 15
23 5 7 14 16
4 6 13 20 22
10 12 19 21 3
11 18 25 2 9
triu(A) + tril(ones(size(A)),-1)
ans =
17 24 1 8 15
1 5 7 14 16
1 1 13 20 22
1 1 1 21 3
1 1 1 1 9
  2 件のコメント
Alex Baham
Alex Baham 2020 年 4 月 2 日
thanks so much! that worked perfectly!!
John D'Errico
John D'Errico 2020 年 4 月 2 日
:)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by