对于循环范围步骤更改以浮动python

时间:2018-12-13 15:54:09

标签: python python-3.x

test_arr = []
for x in range(-100, 100, 1):
    y = TanhGate().forward(Variable(x/10.0)).value
    test_arr.append(y)
plt.plot(test_arr)
plt.show()`

这是我的代码,但是问题是我需要将范围从0.1扩展到-10到10,但这不会发生,也不知道如何解决。 The plot looks like this 我知道对于某些人来说这很容易,但是需要一些帮助。

0 个答案:

没有答案