How to generate a random decimal number between 1.0 and 1.52?

6 次查看(过去 30 天)
rand([1.0,1]);
May I know why this is not working?

采纳的回答

Ameer Hamza
Ameer Hamza 2020-10-29
编辑:Ameer Hamza 2020-10-29
You can generate them by scaling and translating the output of rand()
range = [1.0,1.52];
x = rand()*diff(range)+range(1)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by