How to plot position vs time
Mostrar comentarios más antiguos
How do I create a script that will plot the vectors of time values(t) and position values(x) at the same time where as the relationship between time and position is that position is equal to the natural log of time. All help is greatly appreciated.
Thanks again
Respuesta aceptada
Más respuestas (1)
Fuad Ashraf
el 14 de Nov. de 2020
0 votos
t=0.0001;
x=log(t);
plot(t,x)
Categorías
Más información sobre Log Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!