필터 지우기
필터 지우기

Velocity_vs_time graph

조회 수: 1 (최근 30일)
Aled
Aled 2011년 2월 24일
I have a code generated in matlab which i am to use of a car coasting down from 120mph => 0mph for velocity against distance, my question is how do i plot velocity against time. I have used an ODE45 function for distance, can i use this method or does and alternative need to be used,
[t,x]=ode45(@frontwing,timerange,initialvalues) plot(x(:,1),x(:,2)) rk=[x(2);-F.rr/mass-Fdrag*x(2).^2/mass]
thanks

답변 (2개)

Jiro Doke
Jiro Doke 2011년 2월 24일
Perhaps
plot(t, x(:, 2))
  댓글 수: 1
Jan
Jan 2011년 2월 24일
That's plain. +1

댓글을 달려면 로그인하십시오.


Paulo Silva
Paulo Silva 2011년 2월 24일
v=diff(x)./diff(t); %aproximated derivative
plot(t(1:numel(v)),v)
%I didn't use plot(t,v)
%because the dimensions of t and v might not be the same

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by