You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
149 B

function res = uniform_5case_plus()
if rand(1) <= 0.9
res = randi([4, 5], 1, 1);
else
res = randi(3, 1, 1);
end
end