how to input a derivative in Matlab
Show older comments
Accepted Answer
More Answers (2)
Walter Roberson
on 7 Feb 2019
0 votes
syms R(t) R0
dR = diff( R)
eq1 = dR == -b*R
eq2 = R(0) == R0
dsolve([eqn1,eqn2])
madhan ravi
on 7 Feb 2019
0 votes
Categories
Find more on Common Operations 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!