how to generate 100 random numbers between 5 and -5?
3 次查看(过去 30 天)
显示 更早的评论
if i use rand it gives me that "Index exceeds the number of array elements"
0 个评论
回答(1 个)
Jesús Zambrano
2021-6-3
Hey Rayhan,
You can try with these lines of code:
a = -5;
b = 5;
N = 100;
r = a + (b-a).*rand(N,1);
Hope it helps!
3 个评论
Steven Lord
2023-10-30
Most likely, if you receive the error given in the original question, you've defined a variable named rand that prevents MATLAB from calling the rand function. To check, what does this show?
which rand
If you have a variable with that name, you'd see this instead:
rand = 42;
which rand
Clear the variable and modify your code (if necessary) to avoid creating a variable of that name.
另请参阅
类别
在 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!