首页 > 其他 > 详细

Programme for Discrete Gaussian Distribution

时间:2020-01-09 12:59:29      阅读:105      评论:0      收藏:0      [点我收藏+]

Discrete Gaussian Distribution \(D_{\Lambda,r}\):

Condition:

  1. Lattic \(\Lambda\)
  2. Scaling factor \(r\)
  3. Central Point \({\bf c}={\bf 0}\)

Matlab implement:

x=-25:25;
y=-25:25;
[xx,yy]=meshgrid(x,y);
z=sqrt((xx).^2+(yy).^2);
z=gaussmf(z,[r\sqrt(2) 0]);
stem3(x,y,z);

r=1
技术分享图片
r=0.5
技术分享图片

Programme for Discrete Gaussian Distribution

原文:https://www.cnblogs.com/jiangyuting/p/12170790.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!