how to input a derivative in Matlab

 Accepted Answer

syms t R(t) b
eqn = diff(R,t) == -b*R ;
sol = dsolve(eqn)

Community Treasure Hunt

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

Start Hunting!