Solve a second order differential equation with ODE45, RK4 and draw with power series
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi, I am completely new to Matlab and am looking to solve a simple second order differential equation:
y''+x*y=0, −∞ < x < ∞.
I am looking to solve for y(x) with rk4, ode45
And plotting with power series these general solutions.
I understand this is a simple equation to solve and have done it fine on paper. However I have been trying different ways to solve it on matlab but to no avail.
Thanks in advance
댓글 수: 2
Jan
2019년 11월 23일
Do you want a numerical solution for a certain initial value or a symbolic solution?
답변 (2개)
Jyotsna Talluri
2019년 11월 26일
Second order differential equations can be slved using 'dsolve'
syms y(x)
Dy = diff(y);
eqn = diff(y,x,2) == -x*y;
y(x) = dsolve(eqn);
y = simplify(y);
댓글 수: 0
JONNALA SISINDRA REDDY
2021년 6월 7일
syms y(x)
Dy = diff(y);
eqn = diff(y,x,2) == -x*y;
y(x) = dsolve(eqn);
y = simplify(y);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Equation Solving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!