0
私の作品はまだありません。ウェーブファイルに変換する必要があります
import matplotlib.pyplot as plot
import numpy as num
def xr(start, stop, step):
while start < stop:
yield start
start = start + step
wavef = lambda x: num.sin(x)/x
t0 = [wavef(x) for x in xr(5.0,200.0,0.1) if x is not 0]
plot.plot(t0)
plot.show()
具体的に何をしたいのかを詳しく教えてください –
どうしますか? – Alexander