Two input numbers random generation
1 次查看(过去 30 天)
显示 更早的评论
Hello.
How can I randomly generate just two input numbers, for example: 1 or 3; 0.95 or 1.05 ?
采纳的回答
Walter Roberson
2015-12-6
If you are trying to randomly generate from a set of distinct numbers, then you can use randsample() if you have the Statistics Toolbox. If you do not then see the File Exchange such as http://www.mathworks.com/matlabcentral/fileexchange/21912-sampling-from-a-discrete-distribution
In the simplest form of equal weight, to draw N times from two values stored in Samples,
Samples( 1 + (rand(1,N) > 1/2) )
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Random Number Generation 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!