values of randi function repeat themselves

while using the function randi that generate random integers uniformly disterbuted i sometimes get in the output vector the same numbers for example:
4 2 5 3 4 8 7 9 7 4
(the number 4 was three times in the row above)
how can i avoid this?
locTX=randi([1 20],1,4);

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 30 de Ag. de 2014
Editada: Azzi Abdelmalek el 30 de Ag. de 2014

0 votos

Use randperm function

4 comentarios

Kobi
Kobi el 30 de Ag. de 2014
how does the random numbers distributed? uniformly?
Image Analyst
Image Analyst el 30 de Ag. de 2014
Editada: Image Analyst el 30 de Ag. de 2014
Each number occurs exactly once. The numbers themselves are not random. They go from 1 up to some numbers, including every integer in between. Only the location of the numbers is random. So even if you scramble their location, each number still appears only once. By the way, there is no function called randni().
Kobi
Kobi el 31 de Ag. de 2014
i use randi not randni
about the other quastion how does the random numbers distributed? uniformly?
Image Analyst
Image Analyst el 31 de Ag. de 2014
rand() and randi() are uniform. randn() is normally/Gaussian distributed. You might want to edit your post (body and subject line) to get rid of randni to avoid confusing people with a function that you say you don't use.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.

Productos

Preguntada:

el 30 de Ag. de 2014

Editada:

el 1 de Sept. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by