How do I create a column vector of random numbers between -40 and 40, with "n" entries?
30 次查看(过去 30 天)
显示 更早的评论
I know rand returns random values between 0 and 1 and randi returns random integers, but how do I create a column vector with random numbers within a certain range?
2 个评论
Amit A
2023-5-18
how to create a column vector named srcBits containing 20,000 randomly-generated bits.
Image Analyst
2023-5-18
@Amit A, start your own question in a new thread, and there say how many elements you want in the vector and how many bits are in each number/element of the vector.
回答(2 个)
Star Strider
2016-10-26
If you want random floating-point numbers:
n = 1000; % Pick A Number
rv = 80*rand(n,1)-40; % Vector Of Random Floating-Point Numbers
figure(1)
hist(rv,50) % Check Result (Optional)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Random Number Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!