how can i generate a random number between two float numbers

116 visualizaciones (últimos 30 días)
user06
user06 el 12 de Sept. de 2018
Respondida: James Tursa el 12 de Sept. de 2018
I am trying to generate a random number between two float numbers by using
val = randi([mnval mxval],1,1)
where mxval and mnval are two float numbers. when i run the above command "First input must be a positive scalar integer value IMAX, or two integer values [IMIN IMAX] with IMIN less than or equal to IMAX." error is coming.

Respuesta aceptada

James Tursa
James Tursa el 12 de Sept. de 2018
This is one of the examples in the rand doc:
val = mnval + rand*(mxval-mnval);

Más respuestas (0)

Categorías

Más información sobre Adding custom doc 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