blob: 396c6e835439f58e18c52bdf0156d79235d78792 (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 2.19
//See Figure 2.51(b)
//Using endpoints of the tangent to the curve at t=25s
delta_v=260-210;//Change in velocity (m/s)
delta_t=51-1;//Change in time (s)
a=delta_v/delta_t;//Acceleration at t=25s (m/s^2)
printf('Acceleration = %0.1f m/s^2',a)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|