Integration of Bessel functions
Mostrar comentarios más antiguos
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)
Respuestas (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 comentario
Mehmet SARIARSLAN
el 31 de Oct. de 2020
Editada: Mehmet SARIARSLAN
el 31 de Oct. de 2020
Categorías
Más información sobre Bessel functions en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!