フィルターのクリア

Generate a random data with fix mean

2 ビュー (過去 30 日間)
Ahmed Hussein
Ahmed Hussein 2014 年 1 月 7 日
コメント済み: Image Analyst 2014 年 1 月 7 日
I have a matrix with 360 elements and I need to expand it to 3600 elements with the same mean and standard deviation.

採用された回答

Wayne King
Wayne King 2014 年 1 月 7 日
編集済み: Wayne King 2014 年 1 月 7 日
You don't say the size of your matrix, you just tell us the number of elements. You also do not give us any information about the distribution -- is it Gaussian?
Xstart = randn(360,1);
meanX = mean(Xstart);
stdX = std(Xstart);
Xend = [Xstart ; stdX*randn(3600-360,1)+meanX];
  2 件のコメント
Ahmed Hussein
Ahmed Hussein 2014 年 1 月 7 日
Thank you very much
Image Analyst
Image Analyst 2014 年 1 月 7 日
Of course repmat() also meets the requirements (or lack thereof).
vector3600 = repmat(vector360, [1, 10]);

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

その他の回答 (2 件)

Ahmed Hussein
Ahmed Hussein 2014 年 1 月 7 日
The matrix is [1,360] and the distribution is Gaussian
Thank you very much

Ahmed Hussein
Ahmed Hussein 2014 年 1 月 7 日
Thank you very much

カテゴリ

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