numpy.arange除以零错误

时间:2013-05-14 19:03:41

标签: python numpy

我使用了numpy的arange函数来制作以下范围:

a = n.arange(0,5,1/2)

这个变量本身可以正常工作,但是当我尝试将它放在我的脚本中的任何地方时,我会收到错误消息

  

ZeroDivisionError:除以零

2 个答案:

答案 0 :(得分:5)

首先,你的step计算结果为零(在python 2.x上)。其次,如果要使用非整数步骤,可能需要检查np.linspace

Docstring:
arange([start,] stop[, step,], dtype=None)

Return evenly spaced values within a given interval.

[...]

When using a non-integer step, such as 0.1, the results will often not
be consistent.  It is better to use ``linspace`` for these cases.

In [1]: import numpy as np

In [2]: 1/2
Out[2]: 0

In [3]: 1/2.
Out[3]: 0.5

In [4]: np.arange(0, 5, 1/2.)  # use a float
Out[4]: array([ 0. ,  0.5,  1. ,  1.5,  2. ,  2.5,  3. ,  3.5,  4. ,  4.5])

答案 1 :(得分:2)

如果您没有使用更新版本的python(我认为3.1或更高版本),则表达式1/2的计算结果为零,因为它假定为整数除法。

您可以通过将1/2替换为1/2或0.5来解决此问题,或将from __future__ import division放在脚本的顶部。