我目前有以下内容,但它不会迭代我。我不明白为什么它不起作用。 Bwavelength和吞吐量是列表。看来我从0开始,但不会增加到1。
ABconstant=[]
c=3e18
for i in range(0, ((len(Bwavelength))-1)):
ABconstant1=(((3e18/((Bwavelength[i])**2))*throughput[i]))
ABconstant.append(ABconstant1)
i+=1
a=Bwavelength[0]
b=Bwavelength[-1]
h=((b-a)/len(Bwavelength))
ABflux = numpy.trapz(Bwavelength, ABconstant, h)
return ABflux
我得到的错误是:
Traceback (most recent call last):
File "Rewrite17.11.2014.py", line 196, in <module>
ABflux1 = ABconversion(Bwavelength, throughput)
File "Rewrite17.11.2014.py", line 186, in ABconversion
ABflux = numpy.trapz(Bwavelength, ABconstant, h)
File "C:\Python27\lib\site-packages\numpy\lib\function_base.py, line 3234, in trapz
ret = add.reduce(d * (y[slice1]+y[slice2]/2.0, axis)
ValueError: Operands could not be broadcast together with shapes (0,) (444,)
波长和吞吐量相等。
我不知道这究竟是什么意思,尽管已经查了一下。
提前致谢。
答案 0 :(得分:2)
循环可以用矢量计算代替:
c=3e18
ABconstant = c / numpy.array(Bwavelength) ** 2 * throughput
ABflux = numpy.trapz(ABconstant, Bwavelength)
return ABflux