numpy.arange([start,]stop,[step,]dtype=None)¶Return evenly spaced values within a given interval.
Values are generated within the half-open interval[start,stop)(in other words, the interval includingstart but excludingstop).For integer arguments the function is equivalent to the Python built-inrange function,but returns an ndarray rather than a list.
When using a non-integer step, such as 0.1, the results will often notbe consistent. It is better to uselinspace for these cases.
| Parameters: |
|
|---|---|
| Returns: |
|
See also
Examples
>>>np.arange(3)array([0, 1, 2])>>>np.arange(3.0)array([ 0., 1., 2.])>>>np.arange(3,7)array([3, 4, 5, 6])>>>np.arange(3,7,2)array([3, 5])