I want to compute the Bessel function of the first kind in MATLAB.
- J0 = First kind zero order.
- J1: There is nothing mentioned what is J1 in the article.
- But wikipidea says: The series indicates that −J1(x) is the derivative of J0(x).
- What is J1 and how should I compute it in MATLAB?
- Should r be a constant value or variable?
Let us say I want to compute J0(r) and J1(r)
J0 = besselj(0,r);
J1 = -besselj(1,r);
Is the code for J1 correct?
According to the documentation,
besselj(α,r)computes Jα(r), the Bessel function of the first kind of order α. So if you want to compute the function for order 1, do