我怎样才能创建一个系列的数字列表?例如 function(0, 2, 5) from 0 to 2 with 5 elements --> [0, 0.5, 1, 1.5, 2] python中有没有可以做到的函数?
问问题
670 次
2 回答
2
numpy
做你想做的事:
>>> import numpy as np
>>> np.linspace(0, 2, 5)
array([0. , 0.5, 1. , 1.5, 2. ])
如果你真的需要它是一个列表,那么你可以这样做:
>>> list(np.linspace(0, 2, 5))
[0.0, 0.5, 1.0, 1.5, 2.0]
于 2020-01-18T23:53:03.617 回答
0
这是一个计算增量并创建数组的简单函数。
def n_spaced_range(x_start, x_end, n_elements):
d = (x_end - x_start) / (n_elements-1)
return [x_start + i*d for i in range(n_elements)]
于 2020-01-18T23:52:57.030 回答