Generating random integers in MATLab

1 回表示 (過去 30 日間)
Ajay Kumar
Ajay Kumar 2018 年 12 月 25 日
コメント済み: madhan ravi 2018 年 12 月 25 日
Can anyone please tell me on how to generate random inters every time my program passes through the loop.
I need 20 nodes between the coordinates of 0-100
during each iterations 20 nodes have to be created at random coordinates.

採用された回答

madhan ravi
madhan ravi 2018 年 12 月 25 日
randi([0 100],1,20)
  2 件のコメント
John D'Errico
John D'Errico 2018 年 12 月 25 日
+1, but remember that this generates integers with replacement. So if you cannot tolerate replicates, then you need to use other tools. Randperm can do it without replacement, so if you want them including 0 up to 100, do this:
randperm(101,20) - 1
madhan ravi
madhan ravi 2018 年 12 月 25 日
Thank you @John D'Errico completely agree..

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by