Solution of Bessel Differential Equation
Afficher commentaires plus anciens
How can I get the general solution in this way? My command's result appears like the integer order of the Bessel differential equation.
ODE2 := diff(T[1](t), t, t) + 2*diff(T[1](t), t)/t + (Omega^2/(a^2*t^(4/3)) - 20/(9*t^2))*T[1](t)
generalsol := dsolve(ODE2, T[1](t))

Thank you.
Réponses (1)
syms T_1(t)
syms a Omega positive
ODE2 = diff(T_1(t), t, t) + 2*diff(T_1(t), t)/t + (Omega^2/(a^2*t^(4/3)) - 20/(9*t^2))*T_1(t)
generalsol = dsolve(ODE2)
Note that
is a constant, and so can be folded into
and
is a constant, and so can be folded into Catégories
En savoir plus sur Bessel functions dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

