Skip to content

Commit

Permalink
removed saves for figures
Browse files Browse the repository at this point in the history
  • Loading branch information
htjb committed Sep 16, 2020
1 parent d32875f commit ca705f0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions example_codes/simple_program.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.savefig('../docs/images/simple_program_data.png')
plt.show()

"""
Expand Down Expand Up @@ -133,7 +132,6 @@
plt.xlabel('x', fontsize=12)
plt.ylabel(r'$\delta y$', fontsize=12)
plt.tight_layout()
plt.savefig('../docs/images/simple_program_msf_residuals.png')
plt.show()

"""
Expand Down Expand Up @@ -168,7 +166,6 @@
plt.xlabel('x', fontsize=12)
plt.ylabel(r'$\delta y$', fontsize=12)
plt.tight_layout()
plt.savefig('../docs/images/simple_program_csf_residuals.png')
plt.show()

"""
Expand Down Expand Up @@ -199,7 +196,6 @@
plt.xlabel('x', fontsize=12)
plt.ylabel(r'$\delta y$', fontsize=12)
plt.tight_layout()
plt.savefig('../docs/images/simple_program_psf1_residuals.png')
plt.show()

"""
Expand Down Expand Up @@ -227,7 +223,6 @@
plt.xlabel('x', fontsize=12)
plt.ylabel(r'$\delta y$', fontsize=12)
plt.tight_layout()
plt.savefig('../docs/images/simple_program_psf2_residuals.png')
plt.show()

"""
Expand Down

0 comments on commit ca705f0

Please sign in to comment.