Generate a rondom sequence
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuesta aceptada
Youssef Khmou
el 15 de Mzo. de 2013
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 comentarios
Más respuestas (2)
Youssef Khmou
el 15 de Mzo. de 2013
Editada: Youssef Khmou
el 15 de Mzo. de 2013
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
0 comentarios
Cedric
el 15 de Mzo. de 2013
Editada: Cedric
el 15 de Mzo. de 2013
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.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!