select numbers based on different probabiltiies
显示 更早的评论
I have an event that happens at a prbability of 1E-06. I want Matlab to return me 1 if that event happens and 0 otherwise. Rand gives me a number upto four decimal places. Could you folks help me come up with a solution.
Thank you
4 个评论
Bruno Luong
2018-12-4
编辑:Bruno Luong
2018-12-4
Rand gives me a number upto four decimal places
Nope RAND returns double, i.e., more than 15 significant decimals.
Don't be fool by what display on your screen and what is stored internally.
messi
2018-12-4
Image Analyst
2018-12-4
编辑:Image Analyst
2018-12-4
Yes. But you don't need the ran=rand line if you're never going to use ran. To see more digits:
format longG
Bruno Luong
2018-12-4
编辑:Bruno Luong
2018-12-4
No this code returns 1 with 1e-5 probability chance, not 1e-6 as you have stated.
ran = rand;
if (rand<1E-05)
selec=1;
else
selec=0;
end
采纳的回答
更多回答(1 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!