フィルターのクリア

Generating random number between 1 to 10

51 ビュー (過去 30 日間)
Aftab Ahmed Khan
Aftab Ahmed Khan 2014 年 7 月 1 日
コメント済み: Souarv De 2021 年 10 月 8 日
Hi everyone,
I want to generate a random number between 1 to 10 for 10 loop iteration, with this code section of mine but i want that each time it generate a different number. Forexample if 2 is generated for the 1st loop iteration, then for the rest of 9 iteration. It won't generate 2 again. Similarly for the rest of other numbers between 1 to 10.
for i=1:10
r = (b-a)*rand(1) + a
end

採用された回答

dpb
dpb 2014 年 7 月 1 日
編集済み: dpb 2014 年 7 月 1 日
That's "sampling w/o replacement". One relatively simple way--
N1=1; N2=10; % range desired
p=randperm(N1:N2);
for i=N1:N2
r=p(i);
...
ERRATA
As noted, in comment, forgot there isn't such a form for randperm. Seems like reasonable enhancement altho it's easy enough to scale externally, too.
Use
N=10; % range desired
p=randperm(N);
for i=1:N
instead.
  3 件のコメント
Aftab Ahmed Khan
Aftab Ahmed Khan 2014 年 7 月 1 日
Ok thanks, i solved it.
dpb
dpb 2014 年 7 月 1 日
Ewww...mea culpa. I was thinking there was a vector version of inputs to randperm to move the range from the default 1:N to N1:N2 but there isn't. Was trying to generalize.
For your case, just use
N=10;
p=randperm(N);
for i=1:N
...
If you do need integers from other than 1:N, scale the resulting array as needed.

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

その他の回答 (3 件)

Jos (10584)
Jos (10584) 2014 年 7 月 2 日
In matlab you can directly loop over a vector (no need for indexing)
V = randperm(10) % example vector
for x = V
% x will iterate over the values of V
disp(x)
end
  1 件のコメント
Souarv De
Souarv De 2021 年 10 月 8 日
That's nice.

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


Juan Gonzalez
Juan Gonzalez 2021 年 4 月 13 日
This is the easiest way
ceil(rand*10)
  1 件のコメント
dpb
dpb 2021 年 4 月 13 日
編集済み: dpb 2021 年 4 月 13 日
But won't follow the request of OP to have sampling without replacement so that none can be repeated in the 10 samples.

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


Elias Gule
Elias Gule 2014 年 7 月 2 日
N = 10; % size of the array
numArray = randperm(N); % array containing integers ranging from 1 : N
for k = numArray
%%perform some calculation/process
doSomething(k);
end

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by