このプロットを Python でセットアップするにはどうすればよいですか?
Mathematica で私がしていることは次のとおりです。
mykvalue = Table[k, {k, 0, 10, 1}];
u[r_, k_] = 1/(2*r^2) + k/(2*r^2);
Plot[u[r, mykvalue], {r, 0, 5}, PlotStyle -> {Red},
PlotRange -> {{0, 5}, {0, 2}}]
Matplotlib ギャラリーから - ソース コードが表示されます。
これは近いです:
http://matplotlib.org/examples/pylab_examples/errorbar_limits.html
http://matplotlib.org/examples/pylab_examples/step_demo.html
http://matplotlib.org/gallery.html
HTH