Generate a rondom sequence

Greetings,
Please can any one help me about:
How to Generate Generate a random sequence Z ={(i, j)},
where i, j Belongs to {1, 2, 3, 4}, i not equal to j
i and j are selected randomly.
Best Regards

 採用された回答

Youssef  Khmou
Youssef Khmou 2013 年 3 月 15 日

1 投票

or you can try :
a=1:4;
v=perms(a); % ALL possible combinations
Z=[v(:,1:2);v(:,3:4)];% Z is 2 columns

2 件のコメント

Cedric
Cedric 2013 年 3 月 15 日
+1
abdulhakeem
abdulhakeem 2013 年 3 月 15 日
Dear Youssef KHMOU,
Thank you very much that is exactly I want. I appreciate That.
Best Regards

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

その他の回答 (2 件)

Youssef  Khmou
Youssef Khmou 2013 年 3 月 15 日
編集済み: Youssef Khmou 2013 年 3 月 15 日

0 投票

hi,
Random sequence derived from which distribution ?
Z=rand(4); % from Uniform distribution.
Z=randn(4); % from Normal distribution.
Z=random('rayl',(1:4)'*(1:4)) % from Rayleigh distribution
Cedric
Cedric 2013 年 3 月 15 日
編集済み: Cedric 2013 年 3 月 15 日

0 投票

A basic approach, but dangerous as you don't know how much time it will take, could be..
ii = randi(4, 4, 1) ;
jj = randi(4, 4, 1) ;
while any(jj == ii)
jj = randi(4, 4, 1) ;
end
Z = [ii, jj]
If you don't want repetitions within ii or jj, you can use RANDPERM.

1 件のコメント

abdulhakeem
abdulhakeem 2013 年 3 月 15 日
Thank you I appreciate your help

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

Community Treasure Hunt

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

Start Hunting!

Translated by