Skip to content

Commit

Permalink
fixed copy-paste mistake in the pythonscript template
Browse files Browse the repository at this point in the history
  • Loading branch information
LuckyJosh committed Oct 2, 2024
1 parent fa43d8b commit c1ac356
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ ax.set_ylabel("$t$ / s")
# <2->
ax.plot(h_c_mean, t_c_mean, "k+", label="Daten: Kugel") # <4-4>
ax.errorbar(noms(h_b_mean), noms(t_b_mean), yerr=stds(t_b_mean), fmt="k+", label="Daten: Kugel") # <5->
ax.plot(h_plot, fit_I_cylinder(h_plot, *params), label="Fit") # <4->
ax.plot(h_plot, fit_I_ball(h_plot, *params), label="Fit") # <4->
ax.legend() # <4->
fig.savefig("plot-I_kugel.pdf") # <4->
# <2->
Expand Down

0 comments on commit c1ac356

Please sign in to comment.