Computing a differential equation using a bessel function.
조회 수: 11 (최근 30일)
이전 댓글 표시
How do we use the bessel function of :
y = besselj(0,x)
to compute the differntial equation of
?
댓글 수: 1
John D'Errico
2022년 10월 23일
Please dont ask exactly the same question again, just to get yet more information. I closed your first question.
채택된 답변
Torsten
2022년 10월 23일
편집: Torsten
2022년 10월 23일
The solution y of this differential equation is a combination of J_0(x) and Y_0(x), the Bessel function of the first and second kind of order 0.
So using it to solve the differential equation makes no sense.
syms x y(x)
eqn = diff(y,x,2)*x^2 + diff(y,x)*x + x^2*y == 0;
Dy = diff(y,x);
conds = [y(0)==1,Dy(0)==0];
sol = dsolve(eqn,conds);
hold on
fplot(sol,[0 100])
x = 0:0.1:100;
plot(x,besselj(0,x))
hold off
댓글 수: 7
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Bessel functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

