PRLのカバー(表紙)に選ばれた!
論文がPRLのカバーに選ばれました。 プリント版の表紙 Vol 135, issue 18のカバー PRLのトップページ APSのトップページ PRLとAPSのトップページに1週間は鎮座します。記念のスクショを撮っておきました。
import numpy as np
import matplotlib.pyplot as plt
from scipy.integrate import cumulative_trapezoid
x = np.arange(30)/3
y = np.sin(x)
integ = cumulative_trapezoid(y, x)
plt.plot(y, label = 'raw')
plt.plot(integ, label = 'integrated')
plt.legend()
<matplotlib.legend.Legend at 0x7fe64b40caf0>
コメント
コメントを投稿