How do I plot fractional orders of the Bessel function of the first kind (e.g. J_{1/3}(x))? Can I still use the besselj function?
1 回表示 (過去 30 日間)
古いコメントを表示
clc;clear all;clf;
x=-20:0.1:20;
J1/3=besselj(1/3,x);
figure(1)
plot(x,J1/3,'k');
grid on
legend('J_{1/3}')
xlabel('x');ylabel('J_1/3(x)')
0 件のコメント
回答 (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!