由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - question on normal distribution in matlab
相关主题
compare the deviation of data points in two different group (转载)how to determine data fit some distribution? thanks
求助,如果x是正态分布,那么1/x的mean和std怎么算?A question about mean, variance, and distribution function.
菜鸟求助STATA循环tweedie distribution
如何计算normal distribution function的cdf numerically?怎样决定用什么distribution做kernel
再问一个linear regression 问题根据一个已知的数据集,估算这个数据的probability distribution 一般用那些方法?
问个STANDARD DEVIATION的事test count data distribution in SAS
Deviations in SAS and STATAnormality test of a set of data?
gamma distribution + mgfHow to test a sample is negative binomial distribution
相关话题的讨论汇总
话题: normfit话题: matlab话题: normal话题: question
进入Statistics版参与讨论
1 (共1页)
t******n
发帖数: 21
1
I used matlab to generate a normal distribution with 0 as mean and 1 as
standard deviation. But if I used function 'normfit' to fit the generated
dataset, the new mu and sigma values do not match the original data. Is this
right?
normpdf: 0, 1
normfit: 9.9900e-02,1.3498e-01
s*******g
发帖数: 37
2
u made a stupid mistake in your code.
U didnot generate the norm-distributed data, since the variable [enm_bf_mcnx
] in your code could not come from standard norm.
U should try the following:
enm_bf_mcnx=normrnd(0,1,1000,1);
[mu,sigma]=normfit(enm_bf_mcnx)
1 (共1页)
进入Statistics版参与讨论
相关主题
How to test a sample is negative binomial distribution再问一个linear regression 问题
请问一个生物统计的问题,小样本量的统计检验问个STANDARD DEVIATION的事
[合集] 求助,统计的牛牛们帮俺这个统计白痴看看这个standard deDeviations in SAS and STATA
请问standard deviation和standard error有什么共同点?gamma distribution + mgf
compare the deviation of data points in two different group (转载)how to determine data fit some distribution? thanks
求助,如果x是正态分布,那么1/x的mean和std怎么算?A question about mean, variance, and distribution function.
菜鸟求助STATA循环tweedie distribution
如何计算normal distribution function的cdf numerically?怎样决定用什么distribution做kernel
相关话题的讨论汇总
话题: normfit话题: matlab话题: normal话题: question