Find the number of rows and column of non-zero number(1st)

1 回表示 (過去 30 日間)
fyza affandi
fyza affandi 2018 年 11 月 27 日
コメント済み: fyza affandi 2018 年 11 月 27 日
Given matrix of Mat. How can I find the number of row & column of the 1st non-zero number?
Mat =
0 0
0 0
0 0
0 0
0 0
0 1
1 1
The result should be:-
a=[6 2]

採用された回答

Bruno Luong
Bruno Luong 2018 年 11 月 27 日
[c,r] = find(Mat.',1,'first');
a = [r,c]
  1 件のコメント
fyza affandi
fyza affandi 2018 年 11 月 27 日
Thank you very much. Really appriciated it

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by