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?
조회 수: 2 (최근 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!