anyone can solve code y” + y’ =0 to find general solution

8 views (last 30 days)
using dsolve or other command
  1 Comment
Torsten
Torsten on 30 Mar 2020
Did you study the examples provided for dsolve ? They are almost identical to what you are supposed to do.

Sign in to comment.

Answers (1)

Birdman
Birdman on 30 Mar 2020
syms y(t)
eq=diff(y,2)+diff(y)==0;
y(t)=dsolve(eq)

Products

Community Treasure Hunt

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

Start Hunting!