How to generate a random number that is greater than or equals to a given number

13 次查看(过去 30 天)
example
a=5
y=randi(number)>=a

回答(1 个)

KSSV
KSSV 2018-3-21
N = 1000 ;
a = 5;
b = 100;
r = (b-a).*rand(N,1) + a;

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by