implement first kind bessel function
이전 댓글 표시
I want to implement bessel function of first kind in MATLAB.
- Jo = First kind zero order.
- J1 There is nothing mentioned what is J1 in the artcile
- But wikipidea says: The series indicates that −J1(x) is the derivative of J0(x),
- What is J1 and how should i implement in MATLAB?
- Should r be a constant value or variable?
Let us say I want to implement Jo(r) and J1(r)
Jo = besselj(0,r);
J1 = -besselj(1,r);
is the code J1 correct?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Bessel functions에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!