error message "you might need a Statistics and Machine Learning Toolbox"
6 次查看(过去 30 天)
显示 更早的评论
I am using the following function in two computers,
random('Normal',0,100,nstates,nactions)
This generates a random numbers from 0 to 100 in a Normal Distribution in an nstates x nactions matrix.
Thing is, I do not have a Statistics and Machine Learning toolbox in my other computer so it returns an error message. Can I write my own function for this?
Thanks
0 个评论
回答(1 个)
Walter Roberson
2016-1-12
That does not generate random numbers from 0 to 100. It generals random numbers with mean 0 and standard deviation 100. The non-toolbox equivalent is
randn(nstates,nactions) * 100 + 0
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Random Number Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!