finding the derivative of a graph
9 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
Azzi Abdelmalek
on 24 Dec 2014
Edited: Azzi Abdelmalek
on 24 Dec 2014
Example
t=0:0.1:10
y=t.^2
dy=gradient(y,t)
subplot(211);
plot(t,y)
subplot(212)
plot(t,dy)
0 Comments
More Answers (0)
See Also
Categories
Find more on Subplots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!