From e25827cbfc12e4064c6ad5596369fd7e37e1389a Mon Sep 17 00:00:00 2001 From: Eugeniy Mikhailov Date: Tue, 15 Dec 2009 19:00:39 +0000 Subject: using plot output script now --- output_results.m | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 output_results.m (limited to 'output_results.m') diff --git a/output_results.m b/output_results.m new file mode 100644 index 0000000..a743707 --- /dev/null +++ b/output_results.m @@ -0,0 +1,21 @@ +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; + -- cgit v1.2.3