For end loop for acceleration

1 Ansicht (letzte 30 Tage)
Paisley Simpson
Paisley Simpson am 21 Feb. 2019
Bearbeitet: Omer Yasin Birey am 21 Feb. 2019
i have a table of various data, and need to find the acceleration of a car using the time and speed columns, how exactly do i do this please, using a for end loop.

Antworten (1)

Omer Yasin Birey
Omer Yasin Birey am 21 Feb. 2019
Bearbeitet: Omer Yasin Birey am 21 Feb. 2019
I don't know why you want to write the code with for loop but this might work.
time = yourTime;
dt = diff(time)
v = yourSpeed;
dv = diff(v)
a = zeros(length(dv),1);%acceleration
for i = 1:length(time)-1
a(i) = dv(i)./dt(i)
end
But better you use
a= dv./dt;

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by