How to detect ones and its location in a column

1 回表示 (過去 30 日間)
fyza affandi
fyza affandi 2018 年 11 月 19 日
編集済み: Andrei Bobrov 2018 年 11 月 19 日
I have matrix A,
A= [0 0 0 0 0 1 1 0 0 0]
How can I detect the ones in the vector and also its location in a column?
The result should be
location = [6 7]

採用された回答

Andrei Bobrov
Andrei Bobrov 2018 年 11 月 19 日
編集済み: Andrei Bobrov 2018 年 11 月 19 日
in your case (for vector):
location = find(A);

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by