Getting the position of a value in a vector
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Adam Palmer
el 5 de Ag. de 2014
Comentada: Star Strider
el 5 de Ag. de 2014
Hey Matlab community, I have another one for you all. I have a vector of values BAC_F that corresponds with time, and I want the first position of BAC(BAC_F<.08) , but I can't quite figure it out. Any help and suggestions are appreciated.
0 comentarios
Respuesta aceptada
Star Strider
el 5 de Ag. de 2014
If you want the index of the first value where BAC < 0.08:
BACx = find(BAC < 0.08, 1, 'first')
2 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!