ハンガーで地デジ
こんな動画を見つけたのでやってみた。うまくいって、居室で地デジが見られるようになりました。 使ったのはこのハンガー
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(30)/3
y = np.sin(x)
grad = np.gradient(y, x)
plt.plot(y, label = 'raw')
plt.plot(grad, label = 'differentiated')
plt.legend()
<matplotlib.legend.Legend at 0x7fe6380592e0>
コメント
コメントを投稿