How od i generate random numbers whose sum is constant?

2 ビュー (過去 30 日間)
BHUKYA VENKATESH
BHUKYA VENKATESH 2022 年 9 月 9 日
コメント済み: BHUKYA VENKATESH 2022 年 9 月 9 日
I want 100 random numbers bu their sum should be same.
  2 件のコメント
Torsten
Torsten 2022 年 9 月 9 日
You want to generate 100 random numbers several times, I guess ? Because if you generate 100 random numbers once, there is only one sum.
BHUKYA VENKATESH
BHUKYA VENKATESH 2022 年 9 月 9 日
yes, I want to generate several times

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

採用された回答

Bruno Luong
Bruno Luong 2022 年 9 月 9 日
If the numbers are supposed to be >= 0 with precribed sum, a simple method is
n = 100;
s = 10;
Y = -log(rand(1,n));
X = s * Y ./ sum(Y,2)
sum(X)
The justification of log is from the ubiased conditioning probability that I explain here:

その他の回答 (1 件)

Bruno Luong
Bruno Luong 2022 年 9 月 9 日
編集済み: Bruno Luong 2022 年 9 月 9 日

カテゴリ

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