besselj
besselj(nu,X) returns Bessel function of first kind for each element of X.
besselj(nu,X,1) applies multiplier (element wise) exp(-abs(imag(X))).
besselj(nu,X,1) applies multiplier (element wise) exp(-abs(imag(X))).
Examples
x = (0:0.1:8)' options = struct options.legendLabels = {'k = 0', 'k = 1', 'k = 2', 'k = 3', 'k = 4'} plot([x], [besselj(0,x) besselj(1,x) besselj(2,x) besselj(3,x) besselj(4,x)],options)