blob: a7437078c76b6c2edc3ae6f2f38786e0944fe2ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
|