example9_1plot.m

来自「good code for matlab by mili , i than yo」· M 代码 · 共 10 行

M
10
字号
function ret = Example9_1plot(X,Y)
%
% generating values for plotting 
% faster then using Example9_1.m
% 
R = sqrt((X-4).^2 + (Y-4).^2 + 0.1); 
ret = -20*sin(R)./R;
% 
% this is not actually the sinc function

⌨️ 快捷键说明

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