Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Non continous range random number generation
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, I want to generate a random integer vector of range 1 to 10. The vector must contain all random integers in range except for 1 and 4. Regards, Muhammad Waqar Ahmed
1 件のコメント
Mahdi
2013 年 4 月 24 日
Do you want to generate just one random number from 1 to 10? Or what is the length of the vector that you want to produce?
回答 (2 件)
Walter Roberson
2013 年 4 月 24 日
V = [2, 3, 5, 6, 7, 8, 9, 10];
randV = V(randperm(length(V)));
Mahdi
2013 年 4 月 24 日
If you have the statistics toolbox, you can use the following idea:
randsample([2 3 5 6 7 8 9 10], 5, 1)
This produces 5 random numbers from the set, with replacement.
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!