Code not working?
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Catherine Mohs
el 31 de En. de 2019
Comentada: Catherine Mohs
el 31 de En. de 2019
I keep getting an error when I run this code. What am I doing wrong?
t=[0:2:100];
height=2.13*t.^2-0.0013*t.^4+0.000034*t.^4.751;
max_height=max(height)
time_max_height=t(max_height)
0 comentarios
Respuesta aceptada
madhan ravi
el 31 de En. de 2019
[max_height,idx]=max(height);
% ^^^---- gives the index , you were rying to index with value instead of true index
time_max_height=t(idx)
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!