how to plot double integral of bessel function?
2 ビュー (過去 30 日間)
古いコメントを表示
I want to plot the below written function but it showing an error "' int' for input arguments of type 'double'. "
k = 10^4;
z = 0:10^(-6):10^(-5);
y = z.*besselj(0,(k*z));
a = int(y,z);
b = a/z;
c = b^0.5*(-266.46);
d = int(c,z);
plot(z,d);
0 件のコメント
回答 (1 件)
Mikhail
2014 年 8 月 26 日
Do you have Symbolic Math Toolbox? Function int is in this toolbox.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Bessel functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!