sympyでグラフを重ねる
sympyでグラフを重ねる
sympyで数式をプロットするとき、重ねて表示する方法
import sympy as sym
sym.init_printing()
その1
sym.var("x")
expr = 1/(1+ sym.exp(-x))
ax1 = sym.plot(expr, line_color="blue", show=False)
ax2 = sym.plot(expr.diff(x), line_color="red", show=False)
ax1.extend(ax2)
ax1.show()
その2
sym.var("x")
expr = 1/(1+ sym.exp(-x))
ax1 = sym.plot(expr, expr.diff(x), legend=True, show=False)
ax1[1].line_color="red"
ax1.show()
legend=True
で凡例が表示される。
Author And Source
この問題について(sympyでグラフを重ねる), 我々は、より多くの情報をここで見つけました https://qiita.com/wrblue_mica34/items/d310db801751527fbc59著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .