How can I find the first row of a specific number in a matrix?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rengin
el 26 de Mzo. de 2014
Respondida: Azzi Abdelmalek
el 26 de Mzo. de 2014
Hello Matlab Users,
- I have a A matrix:
- A=[2 4;2 10;2 15;5 14;6 7;6 15;8 16;8 10] and I want to see the first row where I meet let's say "6"(which is the 5th row).Could you help me in solving that problem,please?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Joseph Cheng
el 26 de Mzo. de 2014
you can use the find() function and search for when the first column in A contains "6".
1 comentario
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!