www.gusucode.com > symbolic 源码程序 matlab案例代码 > symbolic/BesselYPlotTheBesselFunctionsOfTheSecondKindExample.m

    %% Plot Bessel Functions of Second Kind
% Plot the Bessel functions of the second kind for $v=0, 1, 2, 3$.
syms x y
fplot(bessely(0:3, x))
axis([0 10 -1 0.6])
grid on

ylabel('Y_v(x)')
legend('Y_0','Y_1','Y_2','Y_3', 'Location','Best')
title('Bessel functions of the second kind')