How to plot position vs time

16 次查看(过去 30 天)
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

采纳的回答

Jonathan Sullivan
Jonathan Sullivan 2012-3-28
t = 0:1000; % Your time vector
x = log(t); % Position is natural log of time
plot(t,x) % Plot your data

更多回答(1 个)

Fuad Ashraf
Fuad Ashraf 2020-11-14
t=0.0001;
x=log(t);
plot(t,x)

类别

Help CenterFile Exchange 中查找有关 Log Plots 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by