Find number in vector
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Io7
el 21 de En. de 2023
Comentada: Image Analyst
el 21 de En. de 2023
Let’s say I have this vector: A = [1,2,3,4,5,6] and I want to know when did my vector went above 3. Like I want to know the value that made my vector go above 3. So I’m interested in the value “4” not 5 or 6. Is there is a code that can help me ?
0 comentarios
Respuesta aceptada
Jonas
el 21 de En. de 2023
find(A>3,1)
1 comentario
Image Analyst
el 21 de En. de 2023
This gives the index, not the value. To see the value, see my answer below where I give both the index and the value of the vector at that index.
Más respuestas (1)
Image Analyst
el 21 de En. de 2023
Try this:
A = [1,2,3,40,50,60];
index = find(A > 3, 1, 'first')
theValueThere = A(index)
0 comentarios
Ver también
Categorías
Más información sobre Logical 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!