码迷,mamicode.com
首页 > 其他好文 > 详细

二维高斯函数(中间暗)、正条纹图与环形条纹图

时间:2018-04-16 18:42:57      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:sqrt   高斯函数   exp   技术分享   半径   高斯   bubuko   条纹   5*   

二维高斯函数

%code

fgs = @(x,y)exp(-(sqrt(x.^2+y.^2)-70).^2./(2*30.^2)); %圆环半径70
F2 = fgs(xp,yp);
imagesc(F2)

 

显示:

技术分享图片

 

二维正弦条纹图:

%code 三个相位

clc,clear
[xp,yp] = meshgrid(-100:100,-100:100);
f = @(x,y,i)0.5+0.5*cos(2.*pi.*1/30*x - i/3*2*pi);
for i =1:3
F1(:,:,i) = f(xp,yp,i);
end
subplot(221)
imagesc(F1(:,:,1))
subplot(222)
imagesc(F1(:,:,2))
subplot(223)
imagesc(F1(:,:,3))
subplot(224)
plot(F1(100,:,1))

 

显示:

技术分享图片

 

环形条纹图:

%code 三个相位

clc,clear
[xp,yp] = meshgrid(-100:100,-100:100);
f = @(x,y,i)cos(2.*pi.*1/30.*sqrt(x.^2+y.^2)-i/3*2*pi);
for i =1:3
F1(:,:,i) = f(xp,yp,i);
end
subplot(221)
imagesc(F1(:,:,1))
subplot(222)
imagesc(F1(:,:,2))
subplot(223)
imagesc(F1(:,:,3))
subplot(224)
plot(F1(100,:,1))

 

显示:

技术分享图片

 

二维高斯函数(中间暗)、正条纹图与环形条纹图

标签:sqrt   高斯函数   exp   技术分享   半径   高斯   bubuko   条纹   5*   

原文地址:https://www.cnblogs.com/MrZheng9511/p/gauss.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!