How can we generate random numbers between two negative values.
6 次查看(过去 30 天)
显示 更早的评论
Can some plz help me to generate random nos between two negative values like [-5,-1.670000000000000]
0 个评论
采纳的回答
KSSV
2021-1-11
a = -5 ;
b = -1.670000000000000 ;
r = (b-a).*rand(1000,1) + a;
4 个评论
Steven Lord
2021-1-11
The randi function generates random integer values in a specified range. Nothing about the function limits it to only being able to produce random positive integer values.
allPositive = randi([2 10], 1, 5)
allNegative = randi([-10 -2], 1, 5)
mixedSigns = randi([-6 6], 1, 5)
If you want to generate normally distributed or uniformly distributed numbers, see the documentation pages for the randn and rand functions respectively.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!