Integration of Bessel functions
Afficher commentaires plus anciens
I can't do it. Can you help me?

u=symunit;
deltar=0.646*u.m;
D_az=4*u.m;
R_az=D_az/2;
int(besselj(0,(2.405*r)/(R_az+deltar)),r,0,R_az)
Réponses (1)
Define symbolic variables
% if true
% code
% end
syms mu r ;
deltar=0.646*mu;
D_az=4*mu;
R_az=D_az/2;
int(besselj(0,(2.405*r)/(R_az+deltar)),r,0,R_az)
1 commentaire
Mehmet SARIARSLAN
le 31 Oct 2020
Modifié(e) : Mehmet SARIARSLAN
le 31 Oct 2020
Catégories
En savoir plus sur Calculus 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!