error message "you might need a Statistics and Machine Learning Toolbox"

조회 수: 6 (최근 30일)
cgo
cgo 2016년 1월 12일
댓글: cgo 2016년 1월 12일
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

답변 (1개)

Walter Roberson
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 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