How to generate random number within a sum limit?

9 visualizzazioni (ultimi 30 giorni)
Generate 5 random numbers, where their sum should be less/equal to 50.

Risposta accettata

Birdman
Birdman il 7 Nov 2017
while true
A=randi([1 15],5,1);
if(sum(A)<=50)
break;
end
end
disp(A)
disp(sum(A))
  2 Commenti
Arnab Pal
Arnab Pal il 7 Nov 2017
ok, it is working. But I need decimal number also. It is giving the only integer. Thank u
Birdman
Birdman il 7 Nov 2017
Modificato: Birdman il 7 Nov 2017
while true
t=15;
A=t*rand(5,1);
if(sum(A)<=50)
break;
end
end
disp(A)
disp(sum(A))
You can change t.

Accedi per commentare.

Più risposte (1)

Roger Stafford
Roger Stafford il 7 Nov 2017
If the numbers are supposed to be any five positive integers, do this:
b = true;
while b
x = 50*randi(5,1);
b = sum(x)>50;
end
If the numbers can be any non-negative real numbers, change the third line above to:
x = 50*rand(5,1);

Categorie

Scopri di più su Dates and Time in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by