generate random numbers in range from (0.8 to 4)
Show older comments
Hi How to generate 20 random numbers in range from (0.8 to 4) Thanks
1 Comment
Accepted Answer
More Answers (3)
Image Analyst
on 11 Mar 2013
Did you look in the help? You will see the first example does what you want:
Example 1
Generate values from the uniform distribution on the interval [a, b]:
r = a + (b-a).*rand(100,1);
1 Comment
ChristianW
on 11 Mar 2013
n = 20;
R = [0.8 4];
z = rand(n,1)*range(R)+min(R)
Ka Mirul
on 17 Oct 2017
0 votes
Hallo, I have seen a tutorial about "Generating Random Number in Specific Range" at https://www.youtube.com/watch?v=MyH3-ONYL_k and it works. Hope it will help you.
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!