繁体   English   中英

通过预定义的步骤迭代列表

[英]itterate over a list by pre-defined steps

如何使用定义的步骤遍历列表而不是列表中的每个项目,我希望能够跳过某些项目。

t = np.linspace(0,100,1000)
Fs = 6000
f = 200

func = 50*np.sin(2 * np.pi * f * t / Fs)+50


idx = [9 140 309 439 609 739 908]
for i in (idx):
        it = integrate.simps(func[i], t[i])
        print(it)

>> gives me this :
5428.010261680331
5428.010261680331
5428.010261680331
5428.010261680331
5428.010261680331
5428.010261680331
5428.010261680331

''' wich is logical, because it itterates over every element,
but how to itterate like the following : 
i want to do integral of func from:
idx 1 to 2
idx 3 to 4 
idx 5 to 6
idx 7 to end wich dosent exist because the list is just 7 items
  so that it gives me only foor values'''

您想成对遍历idx中的值吗?

这篇文章迭代列表中的每两个元素有一些方法可以做到这一点。 不确定您想如何处理没有下一个元素的最后一个元素的边缘情况。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM