deriving fractions in matlab
Show older comments
hi, is it possible to derive a fraction? for example: (s+2)/(s^2+7)
thanks.
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 18 Jun 2013
You can also use an approximate derivation of your function:
s=0:0.01:100;
y=(s+2)./(s.^2+7);
dy=diff(y)./diff(s)
plot(s(1:end-1),dy)
Categories
Find more on Manage Products 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!