I try to calculate the following integral
3 views (last 30 days)
Show older comments
Shreen El-Sapa
on 26 Nov 2023
Commented: Shreen El-Sapa
on 27 Nov 2023
syms r sigma
assume(sigma>0)
assume(k>0 & k<1)
L=int(r*besseli(0,a*r)*besselk(0,a*r)),r,sigma,1)
0 Comments
Accepted Answer
More Answers (1)
Walter Roberson
on 26 Nov 2023
I had to guess about what k was in the code.
syms r sigma
assume(sigma>0)
syms a; assume(a>0 & a<1)
L=int(r*besseli(0,a*r)*besselk(0,a*r),r,sigma,1)
5 Comments
Walter Roberson
on 26 Nov 2023
format long g
syms r
sigma = 0.5;
k = 1/2;
L1 = int(r*besseli(0,k*r)*besselk(0,k*r),r,sigma,1)
L2 = double(L1)
L3 = vpaintegral(r*besseli(0,k*r)*besselk(0,k*r),r,sigma,1)
L4 = integral(@(r) r.*besseli(0,k*r).*besselk(0,k*r), sigma, 1)
See Also
Categories
Find more on Calculus 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!