How to loop rand number without repition?

12 ビュー (過去 30 日間)
Muhammad Sam'an
Muhammad Sam'an 2020 年 9 月 30 日
コメント済み: Steven Lord 2020 年 10 月 1 日
I Have
set phi = [ 1,2,3,4,5,6,7,8,9,10,11,12]
i want rand phi with looping with requirment for each iteration resulted single rand number without repitition?
How should i do ?

回答 (1 件)

madhan ravi
madhan ravi 2020 年 9 月 30 日
  2 件のコメント
Muhammad Sam'an
Muhammad Sam'an 2020 年 9 月 30 日
thank you, but that i need single number rand
my listing math lab code
clc;clear;close all;
c=[10 2 20 11
12 7 9 20
4 14 16 18];
s=[15
25
10
];
d=[5 15 15 15];
[m,n]=size(c);
x=zeros(m,n);
phi=1:m*n
for i=1:m*n
k1 = randperm(length(phi))
ii=[1+mod((k1-1),m)]
j=[1+mod((k1-1),n)]
x(ii,j)=min(s(ii),d(j))
s(ii)= s(ii)-x(ii,j)
d(j)= d(j)-x(ii,j)
end
Steven Lord
Steven Lord 2020 年 10 月 1 日
"Shuffle" the vector before you enter the loop. Inside the loop draw the next element of the vector that you haven't used yet.
r = randperm(52);
for k = 1:5
fprintf("Drawing card %d.\n", r(k))
end

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

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by