How to plot position vs time
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Trey
am 28 Mär. 2012
Beantwortet: Fuad Ashraf
am 14 Nov. 2020
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
0 Kommentare
Akzeptierte Antwort
Jonathan Sullivan
am 28 Mär. 2012
t = 0:1000; % Your time vector
x = log(t); % Position is natural log of time
plot(t,x) % Plot your data
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Log Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!