diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2009-12-21 22:48:07 +0000 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2009-12-21 22:48:07 +0000 |
commit | c680b440e6963ab1f507ca0fcefdc3ce982db8af (patch) | |
tree | 935b6b2c62f5eaefa4fc407e4e343a05e3319916 /output_results.m | |
parent | 9e39b7b6b7a74414551a70ea8ccdb11a98023ef5 (diff) | |
download | multi_mode_eit-c680b440e6963ab1f507ca0fcefdc3ce982db8af.tar.gz multi_mode_eit-c680b440e6963ab1f507ca0fcefdc3ce982db8af.zip |
calculation of total absorption is added
Diffstat (limited to 'output_results.m')
-rw-r--r-- | output_results.m | 44 |
1 files changed, 27 insertions, 17 deletions
diff --git a/output_results.m b/output_results.m index a743707..22bab0b 100644 --- a/output_results.m +++ b/output_results.m @@ -1,21 +1,31 @@ 1; -load 'xi_vs_detuning.mat' ; -figure(1); - hold off; - plot(detuning_freq, imag(xi_linear), '-1;linear;'); - hold on; - plot(detuning_freq, imag(xi_left), '-2;left;'); - plot(detuning_freq, imag(xi_right), '-3;right;'); - title("probe absorption"); - hold off; -figure(2); - hold off; - plot(detuning_freq, real(xi_linear), '-1;linear;'); - hold on; - plot(detuning_freq, real(xi_left), '-2;left;'); - plot(detuning_freq, real(xi_right), '-3;right;'); - title("probe dispersion"); - hold off; +load 'total_absorption_vs_detuning.mat' ; + +zoom_factor=1e3; +figure(1); +hold off; +plot(detuning_freq, zoom_factor*total_absorption_vs_detuning, '-'); +title("total absorption"); +xlabel("two photon detuning"); + +%load 'xi_vs_detuning.mat' ; + +%figure(1); + %hold off; + %plot(detuning_freq, imag(xi_linear), '-1;linear;'); + %hold on; + %plot(detuning_freq, imag(xi_left), '-2;left;'); + %plot(detuning_freq, imag(xi_right), '-3;right;'); + %title("probe absorption"); + %hold off; +%figure(2); + %hold off; + %plot(detuning_freq, real(xi_linear), '-1;linear;'); + %hold on; + %plot(detuning_freq, real(xi_left), '-2;left;'); + %plot(detuning_freq, real(xi_right), '-3;right;'); + %title("probe dispersion"); + %hold off; |