how to generate 100 random numbers between 5 and -5?
5 views (last 30 days)
Show older comments
if i use rand it gives me that "Index exceeds the number of array elements"
0 Comments
Answers (1)
Jesús Zambrano
on 3 Jun 2021
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!
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!