Integration of Bessel functions
Show older comments
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)
Answers (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 Comment
Mehmet SARIARSLAN
on 31 Oct 2020
Edited: Mehmet SARIARSLAN
on 31 Oct 2020
Categories
Find more on Bessel functions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!