summaryrefslogtreecommitdiff
path: root/psr/output_results.m
diff options
context:
space:
mode:
authorEugeniy Mikhailov <evgmik@gmail.com>2010-06-16 18:00:03 +0000
committerEugeniy Mikhailov <evgmik@gmail.com>2010-06-16 18:00:03 +0000
commit9709621e8c71e9a86cd6e3e47edc3d8b8e6becd9 (patch)
tree0693c4783bf81abb865bd2637b60497b1391ce54 /psr/output_results.m
parentae3f51976a745241396e98aef58933637485d787 (diff)
downloadmulti_mode_eit-9709621e8c71e9a86cd6e3e47edc3d8b8e6becd9.tar.gz
multi_mode_eit-9709621e8c71e9a86cd6e3e47edc3d8b8e6becd9.zip
this code is for PSR calculation, added pseudo code to not recalculate atom properties matrices if they already saved
Diffstat (limited to 'psr/output_results.m')
-rw-r--r--psr/output_results.m31
1 files changed, 31 insertions, 0 deletions
diff --git a/psr/output_results.m b/psr/output_results.m
new file mode 100644
index 0000000..eca6085
--- /dev/null
+++ b/psr/output_results.m
@@ -0,0 +1,31 @@
+1;
+
+
+load '/tmp/relative_transmission_vs_detuning.mat' ;
+
+figure(1);
+hold off;
+zoom_factor=1;
+plot(detuning_freq, zoom_factor*(relative_transmission_vs_detuning), '-');
+title("relative transmission");
+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;
+