Effacer les filtres
Effacer les filtres

How to detect ones and its location in a column

1 vue (au cours des 30 derniers jours)
fyza affandi
fyza affandi le 19 Nov 2018
Modifié(e) : Andrei Bobrov le 19 Nov 2018
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]

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 19 Nov 2018
Modifié(e) : Andrei Bobrov le 19 Nov 2018
in your case (for vector):
location = find(A);

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by