二维高斯函数
%code
fgs = @x,y)exp-sqrtx.^2+y.^2)-70).^2./2*30.^2)); %圆环半径70
F2 = fgsxp,yp);
imagescF2)
显示:
二维正弦条纹图:
%code 三个相位
clc,clear
[xp,yp] = meshgrid-100:100,-100:100);
f = @x,y,i)0.5+0.5*cos2.*pi.*1/30*x – i/3*2*pi);
for i =1:3
F1:,:,i) = fxp,yp,i);
end
subplot221)
imagescF1:,:,1))
subplot222)
imagescF1:,:,2))
subplot223)
imagescF1:,:,3))
subplot224)
plotF1100,:,1))
显示:
环形条纹图:
%code 三个相位
clc,clear
[xp,yp] = meshgrid-100:100,-100:100);
f = @x,y,i)cos2.*pi.*1/30.*sqrtx.^2+y.^2)-i/3*2*pi);
for i =1:3
F1:,:,i) = fxp,yp,i);
end
subplot221)
imagescF1:,:,1))
subplot222)
imagescF1:,:,2))
subplot223)
imagescF1:,:,3))
subplot224)
plotF1100,:,1))
显示: