フィルターのクリア

Need to find the distribution from mean & standard deviation

3 ビュー (過去 30 日間)
Charanraj
Charanraj 2018 年 5 月 17 日
回答済み: Charanraj 2018 年 5 月 18 日
Hello,
I need a 100 numbers of distribution for a specified mean & std. I found one, but its not accurate. The one I found is below-
sig_R_lrs=18.37e3;
mu_R_lrs=16.49e3;
sig_G_lrs=1/sig_R_lrs;
mu_G_lrs=1/mu_R_lrs;
y_lrs=sig_G_lrs.*randn(100,1)+mu_G_lrs;
here mean(y_lrs) or std(y_lrs) is not accurate. Also came across r = normrnd(16.49e3,18.37e3,[1,100]), but even here i don't get an exact mean & std :(
Any suggestion of getting an accurate mean & std and determining the distribution ?
thanks in advance :)
  3 件のコメント
Stephen23
Stephen23 2018 年 5 月 17 日
編集済み: Stephen23 2018 年 5 月 17 日
"i don't get an exact mean & std"
In general a sample will not have the same mean, standard deviation, etc. as the distribution. Take it down to the logical extreme: does a sample of one value have the same mean value as whatever random distribution it was picked from? In general you would not expect this.
Please explain why you expect a random sample to have that exact mean and standard deviation.
dpb
dpb 2018 年 5 月 17 日
"does a sample of _one value have the same mean value as whatever random distribution it was picked from?"_
Well, it might, but odds aren't good... VBG (de' debbil made me do it!)

サインインしてコメントする。

回答 (3 件)

Image Analyst
Image Analyst 2018 年 5 月 17 日
To learn about the "standard error of the mean" (which you're talking about even if you don't realize it), see Wikipedia https://en.wikipedia.org/wiki/Standard_error

Jeff Miller
Jeff Miller 2018 年 5 月 18 日
As others have said, you should not expect the randomly sampled values to match the true mean and sd exactly, due to random sampling error. If you do want to construct an artificial sample where the values do match exactly (even though this is not a true random sample), you can do so like this:
sig_R_lrs=18.37e3;
mu_R_lrs=16.49e3;
sig_G_lrs=1/sig_R_lrs;
mu_G_lrs=1/mu_R_lrs;
r = randn(100,1);
rsd = std(r);
r2=r/rsd*sig_G_lrs;
y_lrs=r2 + (mu_G_lrs-mean(r2));

Charanraj
Charanraj 2018 年 5 月 18 日
Thank you all for your answers. Finally, I managed to tune something near to the desired mean & std. Yes, I was looking for the precise mean & std & I understood from your replies that although ideally speaking it is 'yes', there are some statistical errors during distribution.
Thank you all once again !

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by