- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
用C语言生成随机数报告
Name:陈启武 Student number:2014200557 Profession:Microelectronics Task1:Generate random variates for Gaussian distriubution and draw the corresponding PDFs The principal: In probability theory, the normal (or Gaussian) distribution is a very commonly occurring continuous probability distribution. The probability density function of the normal distribution is The parameter in this definition is the mean or expectation of the distribution (and also its median and mode). The parameter is its standard deviation; its variance is therefore . A random variable with a Gaussian distribution is said to be normally distributed and is called a normal deviate. b) The method of generating random numbers is to use the 搑and()?function to generate a random number in C++ program firstly, then the generated random number is mapped to the required range.In the text,I generated 10,000 random numbers followed by uniform distribution between the interval [-10,10]. c) We can use the generated random numbers to calculate density function values,these values are the required random numbers for normal distributon. In the test,I defined 搉ormal()?function to generate 10000 idensity function values which have been put in to a text called ?23?. d) Finally,we must draw the corresponding PDFs to test and verify probability density function values with MATLAB. In the test,I I put the programmed datas into 500 groups and get the different histograms for normal(0,1),(0,4.26),(-2.5,1). Here抯 the commands of matlab I have used in the test.u m=load(F:\text\normal\123.txt) hist(m,500) Title(‘N(miu,sigma)’) The C++ source program: #include math.h #include stdlib.h #include time.h #include fstream #include iostream using namespace std; #define pi 3.1415926 //Generate a randon number followed by uniform distribution between the inteval [min,max] templatetypename T T rand(T min, T max) { return min+(max-min)*rand()/(RAND_MAX+1.0); } //calcu
您可能关注的文档
- 生物化学5 糖类.ppt
- 生物化学3-生物催化剂——酶.pptx
- 生物多样性 biodiversity PPT.pptx
- 生物学之脂类.ppt
- 生物学发光检测法(ATP).ppt
- 生物学词典.doc
- 生物学实验:蛙心期前收缩.ppt
- 生物医学工程概论之生物医学图像_1-part2.ppt
- 生物工程下游技术1.ppt
- 生物文献阅读.ppt
- 华兴资本2025年产业AI应用热力报告21页.pdf
- HEADLINER-释放信任人工智能安全的蓝图.pdf
- 观察家研究基金会ORF2025全球人工智能AI的未来研究报告英文版23页.pdf
- 开放式创新SSbD和DPPs数字化以及对创新资产的有效和公平的共同创造和共享的追求PeterKlein博士.pdf
- 先进材料研发的挑战GerdLoehden.pdf
- 基于对生物降解性和数字工具的基本理解的可生物降解材料设计AndreasKuenkel.pdf
- 欧盟的循环性重点关注钢铁行业JurgenTiedje.pdf
- 研报食品饮料行业啤酒旺季来临关注东鹏饮料上市-21051616页.pdf
- 促进欧盟与日本合作开发建筑先进材料TakafumiNoguchi.pdf
- 利用人工智能进行多模态数据分析健康科学和研究中的实际应用.pdf
文档评论(0)