anyone can solve code y” + y’ =0 to find general solution
Show older comments
using dsolve or other command
1 Comment
Torsten
on 30 Mar 2020
Did you study the examples provided for dsolve ? They are almost identical to what you are supposed to do.
Answers (1)
Birdman
on 30 Mar 2020
syms y(t)
eq=diff(y,2)+diff(y)==0;
y(t)=dsolve(eq)
Categories
Find more on Common Operations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!