diff options
Diffstat (limited to 'compass_circ_output_results.m')
-rw-r--r-- | compass_circ_output_results.m | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/compass_circ_output_results.m b/compass_circ_output_results.m index 627ead7..b2c7a04 100644 --- a/compass_circ_output_results.m +++ b/compass_circ_output_results.m @@ -1,7 +1,7 @@ 1; -load '/tmp/total_relative_transmission_vs_phi.mat' ; +load '/tmp/total_relative_transmission_vs_theta.mat' ; % let's create sideband transmission vs angle vectors % 1st of all we need to create matrix instead of a vector @@ -11,7 +11,7 @@ load '/tmp/total_relative_transmission_vs_phi.mat' ; N_detunings=length(detuning_freq); N_angles=length(thetas); -transmission_matrix=reshape(total_relative_transmission_vs_phi, N_detunings, N_angles); +transmission_matrix=reshape(total_relative_transmission_vs_theta, N_detunings, N_angles); % the last sideband is not in two-photon resonance % we use it as a reference for background transmission @@ -54,4 +54,14 @@ legend(labels); hold off; +figure(2) +j=4; k= 3; +j=2; k= 7; +% plotting parametric line of a sideband amplitude (j) vs another one (k) +plot(zoom_factor*(transmission_matrix(j,:)), zoom_factor*(transmission_matrix(k,:))) +xlabel( labels{j}); +ylabel( labels{k}); +title('One sideband amplitude vs another for different angles theta, between B-field and light propagation direction'); + + % vim: ts=2:sw=2:fdm=indent |