Matplotlib による作図
https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html
モジュールのインポート
import numpy as np
import matplotlib.pyplot as plt
データの計算
x = np.linspace(0, 10, 11)
x
array([ 0., 1., 2., 3., 4., 5., 6., 7., 8., 9., 10.])
y = x**2
y
array([ 0., 1., 4., 9., 16., 25., 36., 49., 64., 81., 100.])
作図
fig = plt.figure() # グラフ領域の作成
plt.plot(x,y)
fig.savefig('p0_matplotlib_s1_1.pdf')
plt.show()
fig = plt.figure() # グラフ領域の作成
plt.plot(x,y, 'ro--')
plt.xlabel(r'$\alpha$', fontsize=14)
plt.ylabel('y', fontsize=14)
fig.savefig('p0_matplotlib_s1_2.pdf')
plt.show()