Azzera filtri
Azzera filtri

How to generate a random number in matlab?

2 visualizzazioni (ultimi 30 giorni)
How to generate a random number in matlab?

Risposta accettata

Jan
Jan il 8 Mar 2015
Modificato: Jan il 8 Mar 2015
This is shown in the documentation: doc rand , especially: floating-point-numbers-within-specific-range
a = 0.01;
b = 50;
r = (b-a) * rand + a;
Reading the documentation is a very efficient way to solve such questions. The docs of Matlab are excellent.

Più risposte (1)

Konstantinos Sofos
Konstantinos Sofos il 10 Mar 2015
Hi,
myrandom = randi([0.01,50],1,1);
Mathworks documentation is excellent!
Regards

Categorie

Scopri di più su Data Import from MATLAB in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by