Non-zero column value

1 ビュー (過去 30 日間)
Tha saliem
Tha saliem 2017 年 6 月 8 日
コメント済み: Tha saliem 2017 年 6 月 9 日
hi if have a matrix like this:
A=[1,0,0,0;0,1,1,1;0,0,1,0;0,0,1,1]
In this matrix i want to check that apart from diagonal values(1,1 & 2,2 etc.), if there are some other non-zero elements in the row then display that row's index. In A, it should display 2 and 4.
Thanks in advance.

採用された回答

Image Analyst
Image Analyst 2017 年 6 月 8 日
Try eye(), any(), and find():
A=[1,0,0,0;0,1,1,1;0,0,1,0;0,0,1,1]
diagonalElements = logical(eye(length(A)))
% Make copy of A so we don't change
% the original A (which could be bad).
Acopy = A;
% Set diagonal elements = 0.
Acopy(diagonalElements) = 0
rowsWith1s = find(any(Acopy, 2))
  3 件のコメント
Tha saliem
Tha saliem 2017 年 6 月 9 日
Yes got it. Thanks alot for helping.

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

その他の回答 (0 件)

カテゴリ

Find more on Operating on Diagonal Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by