PRLのカバー(表紙)に選ばれた!
論文がPRLのカバーに選ばれました。 プリント版の表紙 Vol 135, issue 18のカバー PRLのトップページ APSのトップページ PRLとAPSのトップページに1週間は鎮座します。記念のスクショを撮っておきました。
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>
コメント
コメントを投稿