Integration of Bessel functions
이전 댓글 표시
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)
답변 (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
Mehmet SARIARSLAN
2020년 10월 31일
편집: Mehmet SARIARSLAN
2020년 10월 31일
카테고리
도움말 센터 및 File Exchange에서 Bessel functions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!