how to solve simple differential equations
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all,
How can I solve this equation?!
dx/dt+y=0
dy/dt-x=0
x(0)=3/2
y(0)=0
Thanks
댓글 수: 0
채택된 답변
Star Strider
2014년 11월 22일
This way, if you have the Symbolic Math Toolbox:
syms x(t) y(t)
[x,y] = dsolve(diff(x) + y == 0, diff(y) - x == 0, x(0)==3/2, y(0)==0)
x =
(3*cos(t))/2
y =
(3*sin(t))/2
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!