ploti0.m

来自「Mathematical Methods by Moor n Stiling.」· M 代码 · 共 15 行

M
15
字号
% Plot the Bessel function
% Copyright 1999 by Todd K. Moon

x=0:.1:5;
subplot(2,2,1);
plot(x,besseli(0,x));
xlabel('x')
ylabel('I_0(x)')
axis([0 5 0 30])
set(gca,'XTick',[0,1,2,3,4,5])
set(gca,'YTick',[0,5,10,15,20,25,30])
axis square
print -dps ../pictures/plotI0.ps
print -deps ../pictures/plotI0.eps

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?