How to detect ones and its location in a column
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
fyza affandi
el 19 de Nov. de 2018
Editada: Andrei Bobrov
el 19 de Nov. de 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]
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 19 de Nov. de 2018
Editada: Andrei Bobrov
el 19 de Nov. de 2018
in your case (for vector):
location = find(A);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!