What is wrong with this equation?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am able to get a solution from this:
[x,y] = dsolve('Dx=-3*x+(5/2)*y','Dy=(-5/2)*x+2*y','t')
But I get an error from this:
[x,y] = dsolve('Dx=2*x+(-5/2)*y','Dy=(9/5)*x-*y','t')
Is there a particular reason why dsolve will not solve this?
댓글 수: 0
답변 (1개)
Youssef Khmou
2013년 5월 8일
hi,
no its fine, remove the asterisk
[x,y] = dsolve('Dx=2*x+(-5/2)*y','Dy=(9/5)*x-y','t')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!