Borrar filtros
Borrar filtros

how to find random number between 20 input numbers

1 visualización (últimos 30 días)
Maryam Abdirad
Maryam Abdirad el 19 de Nov. de 2017
Respondida: Walter Roberson el 19 de Nov. de 2017
I have 20 numbers that I want to find 1 or 2 or 3 of them as random. Could you help me to write code or any function that generate random number?

Respuesta aceptada

Walter Roberson
Walter Roberson el 19 de Nov. de 2017
L = length(YourVectorOfNumbers);
num_to_pick = randi(3);
which_to_pick = randperm(L, num_to_pick);
picked_values = YourVectorOfNumbers(which_to_pick);

Más respuestas (0)

Categorías

Más información sobre Random Number Generation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by