diff options
Diffstat (limited to 'output_results.m')
-rw-r--r-- | output_results.m | 21 |
1 files changed, 21 insertions, 0 deletions
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; + |