Filter löschen
Filter löschen

Generate random numbers within a range?

2 Ansichten (letzte 30 Tage)
Matrix-Matlab
Matrix-Matlab am 5 Mär. 2017
Kommentiert: John D'Errico am 5 Mär. 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 Kommentar
John D'Errico
John D'Errico am 5 Mär. 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.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 5 Mär. 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!

Translated by