diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-25 09:33:07 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2020-09-25 09:33:07 -0400 |
commit | ad1da3a0ee91fc64d6841d88044df000ecade907 (patch) | |
tree | 692d744e9da5b2934b34d0e12f8d6c82e445a1e7 | |
parent | 3a6c781e050fad0fc411f4439ef59a353aae4931 (diff) | |
download | multi_mode_eit-ad1da3a0ee91fc64d6841d88044df000ecade907.tar.gz multi_mode_eit-ad1da3a0ee91fc64d6841d88044df000ecade907.zip |
added saving figures
-rw-r--r-- | compass_circ_output_results.m | 2 | ||||
-rw-r--r-- | compass_lin_output_results.m | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/compass_circ_output_results.m b/compass_circ_output_results.m index 253dbe3..2c54f7d 100644 --- a/compass_circ_output_results.m +++ b/compass_circ_output_results.m @@ -51,6 +51,7 @@ title("Relative sidebands amplitudes"); xlabel("Angle theta, between B-field and light propagation direction"); ylabel("Amplitude"); legend(labels); +print('compass_circ_sidebands_vs_theta.png') hold off; @@ -62,6 +63,7 @@ plot(zoom_factor*(transmission_matrix(j,:)), zoom_factor*(transmission_matrix(k, xlabel( labels{j}); ylabel( labels{k}); title('One sideband amplitude vs another for different angles theta'); +print('compass_circ_sidebands_combo_vs_theta.png') % vim: ts=2:sw=2:fdm=indent diff --git a/compass_lin_output_results.m b/compass_lin_output_results.m index e60c3d1..cc0e122 100644 --- a/compass_lin_output_results.m +++ b/compass_lin_output_results.m @@ -52,6 +52,8 @@ xlabel("Angle phi between x-axis and linear polarization, B-field is in y-z plan ylabel("Amplitude"); legend(labels); +print('compass_lin_sidebands_vs_phi.png') + hold off; % vim: ts=2:sw=2:fdm=indent |