anyone can solve code y” + y’ =0 to find general solution
이전 댓글 표시
using dsolve or other command
댓글 수: 1
Torsten
2020년 3월 30일
Did you study the examples provided for dsolve ? They are almost identical to what you are supposed to do.
답변 (1개)
Birdman
2020년 3월 30일
syms y(t)
eq=diff(y,2)+diff(y)==0;
y(t)=dsolve(eq)
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!