MATLAB: Zeros of Bessel functions

bessel functons

Has anyone posted an m-file which computes the zeros of bessel functions, J_n and Y_n?

Best Answer

Why not just use FZERO?
zroot = fzero(@(z) besselj(1, z), 3)
besselj(1, zroot) % Should be small
Related Question