Finding the location of particular value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Vinay Srinivasan
el 15 de Feb. de 2020
Comentada: Vinay Srinivasan
el 15 de Feb. de 2020
Hello
I have a matlab data file which has 4 variables like time,velocity ,acceleration . Each variable has 2000values . I need maximum acceleration,so I used max(acceleration).Now I need to know the velocity at maximum acceleration from the data. How to get that value .
0 comentarios
Respuesta aceptada
Walter Roberson
el 15 de Feb. de 2020
Editada: Walter Roberson
el 15 de Feb. de 2020
[maxacc, maxaccidx] = max(acceleration);
maxaccvel = velocity(maxaccidx);
4 comentarios
Walter Roberson
el 15 de Feb. de 2020
The second output of max is the index where the data was located.
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing 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!