#23_リマソン import numpy as np import math import matplotlib.pyplot as plt xy = [(p, math.exp(p)) for p in \ np.arange(start = - 2, stop = 2, step = 0.1)] z = [list(t) for t in zip(*xy)]; x = z[0]; y = z[1] fig, ax = plt.subplots() ax.plot(x, y) plt.show()
名称 | グラフ | 説明 |
---|---|---|
指数関数 |
python
+matplotlib
import numpy as np import math import matplotlib.pyplot as plt xy = [(p, math.exp(p)) for p in \ np.arange(start = - 2, stop = 2, step = 0.1)] z = [list(t) for t in zip(*xy)]; x = z[0]; y = z[1] fig, ax = plt.subplots() ax.plot(x, y) plt.show() |
|
逆ネルンスト | 電池の充放電曲線で現れます。 | |
確率曲線 | ||
正規分布関数 | 確率統計で多用されます。 品質管理 でも大切です。 |