Random numbers within 2 ranges

Is it possible to generate random numbers within 2 ranges but for the same purpose.
e.g. from 1-100 & 200-300, with all the results output together?
Thanks
~N~

回答(2 个)

[randi(100,1,100);randi(100,1,100)+199]

2 个评论

Then the upper range is from 200 to 299 only.
Yes, it should be
randi(101,1,100)+199

请先登录,再进行评论。

a = randi([1, 201], 1, 100)
a(a > 100) = a(a > 100) + 99;

类别

帮助中心File Exchange 中查找有关 Random Number Generation 的更多信息

提问:

N
N
2013-2-23

Community Treasure Hunt

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

Start Hunting!

Translated by