博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二维高斯函数(中间暗)、正条纹图与环形条纹图
阅读量:6574 次
发布时间:2019-06-24

本文共 743 字,大约阅读时间需要 2 分钟。

二维高斯函数

%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))

 

显示:

 

转载于:https://www.cnblogs.com/MrZheng9511/p/gauss.html

你可能感兴趣的文章
C++_012C++11的语法新特性
查看>>
Git学习笔记:常用命令总结
查看>>
iOS - OC 与 Swift 互相操作
查看>>
sort、qsort排序
查看>>
修改时无论改成什么,值总是默认为1
查看>>
Android自动化测试01-环境安装连接问题及解决
查看>>
zencart后台修改首页meta_title、meta_keywords、meta_description
查看>>
SecureCRT 常用命令大全
查看>>
Android 通过触摸动态地在屏幕上画矩形
查看>>
序列化 反序列化
查看>>
html基础内容样式
查看>>
java for语句(翻译自Java Tutorials)
查看>>
iOS开发之SceneKit框架--实战地月系统围绕太阳旋转
查看>>
java设计模式2--工厂模式
查看>>
在Mac OS X中配置Apache + PHP + MySQL
查看>>
今天天气怎么样
查看>>
free函数
查看>>
bootstrap中点击左边展开
查看>>
【转】暴露问题是对项目验收最起码的尊重!
查看>>
昆虫繁殖
查看>>