Generating random decimals with a range

I need to create a table using random numbers, i am having an issue with getting correct digits within a specified range. The range is 500.57 to 2000.75 and the random numbers must be 2 decimals

 Respuesta aceptada

%Change the display format
format longg
%Generate random number between [min max]*10^(num_of_demicals)
%and divide the output by 10^(num_of_demicals)
y = randi([50057 200075],10,1)/100;
disp(y)
661.21 1313.32 1785.45 1963.6 1042.08 592.53 1087.34 1383.99 699.65 723.99

Más respuestas (0)

Categorías

Más información sobre Random Number Generation en Centro de ayuda y File Exchange.

Productos

Versión

R2023a

Preguntada:

el 1 de Oct. de 2023

Comentada:

el 3 de Oct. de 2023

Community Treasure Hunt

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

Start Hunting!

Translated by