物理学会2025@広島大学
物理学会に参加してきました。サッカーもできて、いろいろな人と打ち合わせもでき、やはり良い会合だなと思いました。 オンサイトは年一回なので、記憶に残りやすいです。
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>
コメント
コメントを投稿