Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I am not good in MATLAB, and I need to solve this problem as soon as possible as

ID: 665294 • Letter: I

Question

I am not good in MATLAB, and I need to solve this problem as soon as possible as I have to submit it.

could you please help me, and write the required code?

Write a code that can calculate the first derivative using first forward difference f(x), given values of f(x) and x. Moreover, the code should plot your results off'(x) vs.x. Test your code for the following set of values velocity vs. time in order to calculate acceleration vs. time and plot your results. Time (s)0 Velocity 0 4.5 7.310.112.213.113.814.4 14.7 14.3 13.1 (m/s) 4 78910

Explanation / Answer

The velocity and acceleration of an object given the position as a function of time, can be calculated by following the below steps:
•Enter the displacement as a function of time, x(t).
•Initialize variables (maximum value for t, number of points to plot, time step Dt ).
•Loop over the values of t for which x and v are to be computed.
Evaluate x(t) and x(t+Dt ).
Estimate velocity using the right derivative approximation.
Estimate acceleration using the centered difference approximation.
Record displacement, velocity, and acceleration for plotting.
•Plot displacement, velocity, and acceleration on side-by-side graphs.
Further, the function f(x) is missing, so these are the steps you should follow to plot.