How to select k out of n, k being normally distributed but not exceeding n
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everyone,
I need to select k numbers out of n without generating doubles and k must not exceed n.
I used to do it by first getting k with normrnd and a very low variation and then finding random numbers and checking for doubles until I have my set of k. Not a very nice approach I know.
Just now I found randperm and it allows me to do this more elegantly, but the prime use of that function, the permutation, is wasted effort in my use. I also switched from normrnd(mu,sigma) to mu+sigma*randn.
Does anyone know a more fficient way of doing this?
Thank you.
0 Kommentare
Antworten (1)
Matt J
am 13 Mai 2014
Bearbeitet: Matt J
am 13 Mai 2014
There is nchoosek(n,k).
It's not clear, however, what "k being normally distributed" is supposed to mean. Clearly, k is always a positive integer, so it cannot be normally distributed.
2 Kommentare
Matt J
am 13 Mai 2014
I still have no idea what a "normally distributed integer" means. It is definitely not standard terminology. Perhaps you mean a uniformly distributed integer, in which case you could use RANDI.
Siehe auch
Kategorien
Mehr zu Random Number Generation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!