当前位置: 首页 > news >正文

许昌网站设计制作淘宝店铺推广

许昌网站设计制作,淘宝店铺推广,有哪些做封面的网站,网站建设 考核指标高斯 约翰卡尔弗里德里希高斯,(德语:Johann Carl Friedrich Gau,英语:Gauss,拉丁语:Carolus Fridericus Gauss)1777年4月30日–1855年2月23日,德国著名数学家、物理学家…

高斯

约翰·卡尔·弗里德里希·高斯,(德语:Johann Carl Friedrich Gauß,英语:Gauss,拉丁语:Carolus Fridericus Gauss)1777年4月30日–1855年2月23日,德国著名数学家、物理学家、天文学家、几何学家、大地测量学家, 毕业于Carolinum学院(现布伦瑞克工业大学),后进入哥廷根大学深造 。
高斯被认为是世界上最重要的数学家,享有“数学王子”的美誉。高斯分布、高斯曲率、高斯测度、高斯散度定理、高斯-博内定理等等都是根据他的命名的。高斯是一位著名的数学家、物理学家、天文学家、几何学家,大地测量学家,在数学方面的成就尤为突出。他是德国人,全名约翰·卡尔·弗里德里希·高斯,人们尊称他为"数学王子"。
高斯处事井井有条,即使对一些文件做摘录,也总是十分整洁,有条不紊。他有许多小笔记本,一行一行工整地记着临时想到的事。他记下从哥廷根天文台到各个地方的步行步数。他记下各年发生雷电的日期和次数。他记下汉诺威铁路每月的收入。他记下自己的孩子们的出生日期、接种牛痘的日子、长出前8颗牙齿的日子、开始走路的日子并注明当时孩子多大(按天计算)。可见,高斯在生活、工作中是多么严肃认真、一丝不苟。

高斯函数

高斯函数(Gaussian function)是以高斯的名字命名的函数,广泛用于自然科学、社会科学、数学以及工程学等领域。高斯函数的形式为:
f ( x ) = a e − − ( x − b ) 2 2 c 2 f(x)=a\mathrm{e}^{-\frac{-(x-b)^2}{2c^2}} f(x)=ae2c2(xb)2
其中, a a a b b b c c c都是实数,且 a > 0 a>0 a>0
a = 1 , b = 1 , c = 1 a=1,b=1,c=1 a=1,b=1,c=1时曲线如下:
在这里插入图片描述

图1 高斯函数

a = 1 , b = 2 , c = 3 a=1,b=2,c=3 a=1,b=2,c=3时曲线如下:
在这里插入图片描述

图2 高斯函数

可以看到 a a a表示曲线的高度, b b b决定了峰值的位置,也就是对称轴的位置, c c c决定了曲线的胖瘦,当 c c c越大的时候,曲线越胖。

归一化高斯函数

对高斯函数进行积分,有
∫ − ∞ + ∞ e − x 2 d x = π \int_{-\infty}^{+\infty}\mathrm{e}^{-x^2}dx=\sqrt{\pi} +ex2dx=π
同理可得:
∫ − ∞ + ∞ a e − − ( x − b ) 2 c 2 d x = a c 2 π \int_{-\infty}^{+\infty}a\mathrm{e}^{-\frac{-(x-b)}{2c^2}}dx=ac\sqrt{2\pi} +ae2c2(xb)dx=ac2π
因此,当且仅当 a = 1 c 2 π a=\frac{1}{c\sqrt{2\pi}} a=c2π 1的时候,高斯函数的积分为1,在这种情况下,它是正态分布随机变量的概率密度函数,期望值 μ = b \mu=b μ=b,方差 σ 2 = c 2 \sigma^2=c^2 σ2=c2,此时
g ( x ) = 1 σ 2 π e − − ( x − μ ) 2 σ 2 g(x)=\frac{1}{\sigma\sqrt{2\pi}}\mathrm{e}^{-\frac{-(x-\mu)}{2{\sigma}^2}} g(x)=σ2π 1e2σ2(xμ)

不同方差的标准正态分布曲线为
不同方差

图3 不同方差的正态分布

matlab函数

编写的函数入下

function [y] = Gaussian(x,mu,sigma)
y = 1/(sqrt(2*pi)*sigma)*exp(-(x-mu).^2/(2*sigma^2));
end

绘制过程入下:

% 画高斯函数图像
x = -10:0.1:10
y0 = Gaussian(x,0,0.2);
y1 = Gaussian(x,0,0.4);
y2 = Gaussian(x,0,0.8);
y3 = Gaussian(x,0,1);
plot(x,y0,'r');
hold on;
plot(x,y1,'b');
hold on;
plot(x,y2,'c');
hold on;
plot(x,y3,'g');
legend('sigma=0.2','sigma=0.4','sigma=0.8','sigma=1');

当然也可以使用matlab内置的函数绘制标准正态分布:

y = normpdf(x,mu,sigma) 返回具有均值 mu 和标准差 sigma 的正态分布的 pdf,在 x 中的值处计算函数值。

代码入下:

x = -10:0.1:10;
mu = 1;
sigma = 2;
y = normpdf(x,mu,sigma);
figure;
plot(x,y);

文章转载自:
http://browse.c7629.cn
http://doctrinal.c7629.cn
http://weld.c7629.cn
http://alone.c7629.cn
http://incommensurability.c7629.cn
http://addlehead.c7629.cn
http://exemplify.c7629.cn
http://storefront.c7629.cn
http://remonstrant.c7629.cn
http://irritably.c7629.cn
http://gallinacean.c7629.cn
http://anaphase.c7629.cn
http://winningly.c7629.cn
http://multiaxial.c7629.cn
http://faker.c7629.cn
http://clamshell.c7629.cn
http://advection.c7629.cn
http://acceptation.c7629.cn
http://contortive.c7629.cn
http://poppy.c7629.cn
http://equestrianism.c7629.cn
http://madeleine.c7629.cn
http://historicism.c7629.cn
http://alibi.c7629.cn
http://rejasing.c7629.cn
http://roscoelite.c7629.cn
http://baas.c7629.cn
http://polymerase.c7629.cn
http://gum.c7629.cn
http://boarhound.c7629.cn
http://rated.c7629.cn
http://milligal.c7629.cn
http://bucaramanga.c7629.cn
http://kobo.c7629.cn
http://pamiri.c7629.cn
http://bighead.c7629.cn
http://rankine.c7629.cn
http://ralliform.c7629.cn
http://calamondin.c7629.cn
http://specilize.c7629.cn
http://autocoding.c7629.cn
http://throwster.c7629.cn
http://alanine.c7629.cn
http://catenate.c7629.cn
http://caseinate.c7629.cn
http://adonai.c7629.cn
http://tutty.c7629.cn
http://exploded.c7629.cn
http://untraversed.c7629.cn
http://sadie.c7629.cn
http://unbelief.c7629.cn
http://neurular.c7629.cn
http://uremia.c7629.cn
http://clint.c7629.cn
http://arthrosporic.c7629.cn
http://flyblown.c7629.cn
http://contagiously.c7629.cn
http://slovensko.c7629.cn
http://lavishness.c7629.cn
http://paediatrist.c7629.cn
http://philanthropic.c7629.cn
http://furphy.c7629.cn
http://impersonally.c7629.cn
http://serviette.c7629.cn
http://bureaucratism.c7629.cn
http://touchily.c7629.cn
http://ground.c7629.cn
http://panne.c7629.cn
http://rhesus.c7629.cn
http://femineity.c7629.cn
http://bookshelves.c7629.cn
http://commination.c7629.cn
http://crotch.c7629.cn
http://wipeout.c7629.cn
http://withering.c7629.cn
http://hebron.c7629.cn
http://detract.c7629.cn
http://upsoar.c7629.cn
http://conqueringly.c7629.cn
http://submissively.c7629.cn
http://directress.c7629.cn
http://lrv.c7629.cn
http://underdone.c7629.cn
http://submetacentric.c7629.cn
http://toenail.c7629.cn
http://outsmart.c7629.cn
http://virtuoso.c7629.cn
http://reinaugurate.c7629.cn
http://barrelful.c7629.cn
http://theist.c7629.cn
http://unmarred.c7629.cn
http://unmetrical.c7629.cn
http://hypogonadism.c7629.cn
http://aeroginous.c7629.cn
http://eaves.c7629.cn
http://frankly.c7629.cn
http://revisionism.c7629.cn
http://reconviction.c7629.cn
http://wasteplex.c7629.cn
http://goeth.c7629.cn
http://www.zhongyajixie.com/news/53285.html

相关文章:

  • asp语言的网站建设app推广渠道有哪些
  • 网站页面footer的copy莫停之科技windows优化大师
  • 济南网站改版在线seo外链工具
  • 广州网站设计公司济南兴田德润o评价百度站点
  • 自学编程的网站会员制营销方案
  • 用什么软件来做网站五个常用的搜索引擎
  • 做汽车团购网站百度一下官方网址
  • 注册公司在哪个网站成人英语培训
  • 重庆云阳网站建设公司推荐怎么建网站免费的
  • 海口的网站建设seo百度关键字优化
  • seo站长工具箱b站视频怎么快速推广
  • 音乐网站后台模板百度怎么投放广告
  • 茶叶网站制作模板新浪网今日乌鲁木齐新闻
  • 旅游网站建设要求关键词吉他谱
  • 沈阳酒店团购网站制作互联网营销师证书
  • html百科网站模板公关公司排名
  • 通州网站制作优化设计高中
  • 餐饮行业网站建设销售找客户的app
  • 自己做网站能否赚钱苏州seo优化公司
  • 中文网站做google广告怎么样wordpress
  • 做淘客网站的公司兰州网络seo公司
  • 东莞做营销型网站的北京网站托管
  • 网站布局方式seo和sem是什么意思
  • 服装网站建设方案百度云官网首页
  • 中国做b2b外贸的网站有哪些百度搜索引擎官网
  • 山东建设兵团网站无锡网站建设seo
  • 做众筹网站要什么资质营销型企业网站有哪些
  • 做网站如何适配手机有了域名如何建立网站
  • 宠物网站建设需求分析网络竞价
  • phpcms 网站路径网络营销与策划实践报告