MATLAB: How to implement Bessel’s function in MATLAB

bessel functionMATLABsimulinktld

i want to find the solution of this bessels function mentioned
please help me to model the same in matlab or simulink

Best Answer

When Bessel functions are being used, it is not uncommon to find that you need higher precision than double precision can provide, so it is common to need to use the symbolic version. To be more precise, often calculation of the values needs a higher range than double precision can support: it is common to end up with formulas that involve the ratio of two large numbers, and even though the ratio might be in the 1/1000 to 2 range, the individual numbers overflow to infinity in double precision.
Related Question