finding the derivative of a graph

I have a 60x1 vector which i plotted against time (60 units). I want to determine the derivative of that graph. How do i do that

 Accepted Answer

Example
t=0:0.1:10
y=t.^2
dy=gradient(y,t)
subplot(211);
plot(t,y)
subplot(212)
plot(t,dy)

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Asked:

AA
on 24 Dec 2014

Edited:

on 24 Dec 2014

Community Treasure Hunt

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

Start Hunting!