Filter löschen
Filter löschen

Floating numbers generation in a range

21 Ansichten (letzte 30 Tage)
BISWA
BISWA am 21 Sep. 2013
I Want to generate an array of 100 Different random floating numbers in the range 2.2 to 22. Please help me with this.

Antworten (2)

Roger Stafford
Roger Stafford am 21 Sep. 2013
What kind of probability distribution do you wish these numbers to have over this interval? If it is to be uniform use 'rand' with appropriate scaling and offset.
  4 Kommentare
BISWA
BISWA am 21 Sep. 2013
Please post the code here which will generate an array of 50 floating numbers between 2.2 to 22.
Image Analyst
Image Analyst am 21 Sep. 2013
You never looked up rand() in the help did you? Otherwise you would have noticed Example 1 which solves your problem
Example 1
Generate values from the uniform distribution on the interval [a,b]:
r = a + (b-a).*rand(100,1);
and I'm pretty sure you would have figured out a is 2.2 and b is 22 and you wouldn't have needed to wait for Simon to do it for you. Please mark the answer as Accepted.

Melden Sie sich an, um zu kommentieren.


Simon
Simon am 21 Sep. 2013
19.8*rand(50, 1) +2 .2
  1 Kommentar
BISWA
BISWA am 21 Sep. 2013
Thank you very much. Its working just fine.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Random Number Generation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by