How to generate random numbers?

5 views (last 30 days)
Raja R
Raja R on 6 May 2016
Edited: Azzi Abdelmalek on 6 May 2016
I wan random number in the range of 10 to 50 but with two decimals of size 1X5
Eg:[10 10.25 13 14.25 45.63] It may be any random numbers

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 6 May 2016
Edited: Azzi Abdelmalek on 6 May 2016
l1=10;
l2=50;
out=l1+(l2-l1)*rand(1,5);
out=round(out*100)/100

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!