blob: 1cd5c30fac7f257eac228a7c90793257367e8303 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Nlevels_no_dopler_no_z;
figure(1)
imagesc(t_1, delta1_1, r13_imOut_1)
colorbar;
xlabel('t (uS)')
ylabel('d_1 (MHz)')
zlabel('r13_imOut_1')
title('Imag(rho_{13}) vs time and d_2 detuning')
figure(2)
plot(delta1_1, r13_imOut_1(:,end),'-')
xlabel('d_1 (MHz)')
ylim ([-6e-4,0])
title('Imag(rho_{13}) vs d_1 detuning')
print('imag_r13.pdf');
figure(3)
plot(delta1_1,r13_rlOut_1(:,end),'-')
xlabel('d_1 (MHz)')
title('Real(rho_{13}) vs d_1 detuning')
print('real_r13.pdf');
|