no new changes

This commit is contained in:
Sandro Zimmermann 2026-03-04 17:27:18 +01:00
parent 47202ce7f0
commit 6d1b64c6c7

View File

@ -45,8 +45,10 @@ print(f"Integral f: {I_f:.3}")
# Plot a # Plot a
plt.figure(1) plt.figure(1)
plt.plot(x_a_data, f_a_data) plt.plot(x_a_data, f_a_data)
plt.xlabel('x'); plt.ylabel('y') plt.xlabel('x')
plt.grid('on'); plt.axis('image') plt.ylabel('y')
plt.grid('on')
plt.axis('image')
# Plot b # Plot b
plt.figure(2) plt.figure(2)