how to generate non integer random number in between two numbers.
Show older comments
I want to generate single random number which is in between 0.86 and 1. how to generate it.
1 Comment
AB WAHEED LONE
on 1 Feb 2021
x=low+(high-low)*rand()
Here low is 0.86 and high is 1
Answers (1)
Star Strider
on 22 Oct 2016
Try this:
desired_random_number = 0.86 + (1 - 0.86) * rand;
Categories
Find more on Random Number Generation 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!