当我再次运行此代码时,为什么我从之前的运行中得到相同的随机数:
local weightsOutput = {}
for i=0, 2 do --initialize random weights
weightsOutput[i] = string.format("%0.4f",(2*math.random())-1)
print(weightsOutput[i])
end
我的代码有什么问题吗?顺便说一下,我正在使用LUA。
答案 0 :(得分:3)
使用
启动您的程序math.randomseed( os.time() )