我认为有两个问题可以分开处理:
如何从 Python 中获得均匀间隔
为此,让我们看一个更简单的例子:
import numpy as np
a = (-0.8,0.8)
b = 3
c = np.linspace(a[0], a[1], b + 1)
d = list(zip(c, c[1:]))
print(d)
哪个输出:
[
(-0.80000000000000004, -0.26666666666666672),
(-0.26666666666666672, 0.26666666666666661),
(0.26666666666666661, 0.80000000000000004)
]
您如何使用给定的数据结构重复上述过程
st=[(-0.8,0.8),(-0.5,0.5),(-0.104,0.104),(-0.872,0.872)]
b=(3,3,6,2)
result = []
for start_stop, parts in zip(st, b):
start, stop = start_stop
c = np.linspace(start, stop, parts + 1)
d = list(zip(c, c[1:]))
result.append(d)
print(result)
结果是:
[
[
(-0.80000000000000004, -0.26666666666666672),
(-0.26666666666666672, 0.26666666666666661),
(0.26666666666666661, 0.80000000000000004)
],
[
(-0.5, -0.16666666666666669),
(-0.16666666666666669, 0.16666666666666663),
(0.16666666666666663, 0.5)
],
等等...
Zip 将一个列表中的元素匹配到另一个列表中,并让您将它们循环在一起,因此这在这里非常有用。
NumPy 的线性间距函数 (np.linspace) 是您要执行的操作。在此处查看详细信息