how do I generate a binary sequence with certain probabilities?
for instance, I want 0 to have 0.6 and 1 to have 0.4 probability
It would be very helpful if you give me the whole code to this

 採用された回答

John D'Errico
John D'Errico 2020 年 3 月 28 日

0 投票

rand() < 0.6
If you want a random binary sequence of length n, then this is sufficient:
rand(1,n) < 0.6

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeRandom Number Generation についてさらに検索

質問済み:

2020 年 3 月 28 日

回答済み:

2020 年 3 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by