pythonでグラフ描画をする際にはmatplotlibが使われますが、このメソッドのなかには単純に指定された座標をプロットするだけではなく、例えば微分方程式を解いて解軌道を表示してくれるものがあります。それがplt.streamplotというもので、メッシュと微分方程式を与えるとメッシュを初期値とした解軌道を美しく描いてくれます。
こういった解軌道を表示するのにはplt.quiverが使われているようですが、このメソッドは初期値と、その初期値から任意の幅ずらしたときの数値解を与えなくてはなりません。与える計算結果を算出するには伝統的に四次のRunge-Kutta法が使われていますが、それにたいしてstreamplotはどんな計算をしているのかが気になっており、ソースを読みたいと思っております。というのも、例えば以下の記事でも紹介しているように、streamplotの示した軌道は刻み幅0.1で四次のRunge-Kutta法を適用したときよりも正確であると考えられるからです。
https://qiita.com/rb6412/items/fa8cbc5b3ea027ee754a
#試したこと
python
1import inspect 2 3print(inspect.getsource(plt.streamplot))
こちらのコードで該当のソースを得ましたが、おそらく橋渡し的な役割を果たしている他の関数を呼び出していることがわかっただけでした。
python
1@docstring.copy(Axes.streamplot) 2def streamplot( 3 x, y, u, v, density=1, linewidth=None, color=None, cmap=None, 4 norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1, 5 transform=None, zorder=None, start_points=None, maxlength=4.0, 6 integration_direction='both', *, data=None): 7 __ret = gca().streamplot( 8 x, y, u, v, density=density, linewidth=linewidth, color=color, 9 cmap=cmap, norm=norm, arrowsize=arrowsize, 10 arrowstyle=arrowstyle, minlength=minlength, 11 transform=transform, zorder=zorder, start_points=start_points, 12 maxlength=maxlength, 13 integration_direction=integration_direction, **({"data": data} 14 if data is not None else {})) 15 sci(__ret.lines) 16 return __ret
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。