solving a differential equation
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi guys, I want to solve a second order differential equation which is:
2*y''(t) + 6*y'(t) + 4*y(t) = f'(t) + 2*f(t)
where, f(t) = exp(-t), and t>0.
Do you have any idea how to find the expression for y(t)? I was trying to use the "dsolve" function but couldn't figure out how it works.
Please help me :)
댓글 수: 0
답변 (2개)
Arsalan
2013년 2월 1일
I usally use matlab's ode solvers such as ode45, ode113, you need to read a bit about this.
check this page
should be easy to code
댓글 수: 0
bym
2013년 2월 1일
Using dsolve is pretty straightforward, I'll give the 1st and last terms:
dsolve('2*D2y ... = ... +2*exp(-t)')
you'll have to fill in the rest
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!