May I ask how to choose random prime number in fix interval?
6 ビュー (過去 30 日間)
古いコメントを表示
May I ask how to choose random prime number in fix interval? For example, choose prime number in between 2 to 30...
0 件のコメント
採用された回答
Andrei Bobrov
2016 年 4 月 28 日
a = 2;
b = 30;
p = primes(b);
p = p(p >= a);
out = p(randperm(numel(p),1));
その他の回答 (1 件)
参考
カテゴリ
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!