Clear Filters
Clear Filters

Generate random numbers within a range?

2 views (last 30 days)
Matrix-Matlab
Matrix-Matlab on 5 Mar 2017
Commented: John D'Errico on 5 Mar 2017
Hello everyone.
I am new to Matlab and therefore have a few questions regarding generation of random numbers.
My task is to randomly generate numbers for age between 18 and 121 - we need 11000 numbers. Afterwards we need to figure out male and female (0 is females) which I'm having difficulties with.
I know I have to use rand function but I cant figure out how to complete these tasks.
Can someone please help me with some guidance for this? Thank you in advance.
Kind regards, Emil
  1 Comment
John D'Errico
John D'Errico on 5 Mar 2017
Read the help for rand. Do so CAREFULLY. If necessary, do so twice. Look at the examples given in
doc rand
Your vague question about males and females is impossible to even try to answer, because there is no real question there.
So spend some time actually learning MATLAB. Read the help. My guess is, you need to read the getting started tutorials first.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 5 Mar 2017
Emil, try this:
rInteger = randi([18,121], 1, 11000) % Whole numbers.
rFloating = 18 + (121-18) * rand(1, 11000) % Includes fractional parts

Community Treasure Hunt

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

Start Hunting!