diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-07-01 00:07:04 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-07-01 00:07:04 -0400 |
commit | 33739ffe624ab72fe7b0c1a08df651bc62d487d3 (patch) | |
tree | 2bae4aa815fb6bea4764e7531f8d8c4e53d4160e | |
parent | 91d7587d8970f93de23f45061269711b5b5175a7 (diff) | |
download | Nresonances-33739ffe624ab72fe7b0c1a08df651bc62d487d3.tar.gz Nresonances-33739ffe624ab72fe7b0c1a08df651bc62d487d3.zip |
plot of populations
-rw-r--r-- | xmds2/Nlevels_no_dopler_with_z/pp.m | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/xmds2/Nlevels_no_dopler_with_z/pp.m b/xmds2/Nlevels_no_dopler_with_z/pp.m index cbca944..d33d0e1 100644 --- a/xmds2/Nlevels_no_dopler_with_z/pp.m +++ b/xmds2/Nlevels_no_dopler_with_z/pp.m @@ -7,6 +7,32 @@ ylabel('t') zlabel('I_1') title('I_1') + + +%% populations plot +figure(20) +subplot(2,2,1); imagesc (z_2, t_2, r11_out_2); caxis([0,1]); colorbar +xlabel('z') +ylabel('t') +zlabel('rho_{11}') +title('rho_{11}') +subplot(2,2,2); imagesc (z_2, t_2, r22_out_2); caxis([0,1]); colorbar +xlabel('z') +ylabel('t') +zlabel('rho_{22}') +title('rho_{22}') +subplot(2,2,3); imagesc (z_2, t_2, r33_out_2); caxis([0,1]); colorbar +xlabel('z') +ylabel('t') +zlabel('rho_{33}') +title('rho_{33}') +subplot(2,2,4); imagesc (z_2, t_2, r44_out_2); caxis([0,1]); colorbar +xlabel('z') +ylabel('t') +zlabel('rho_{44}') +title('rho_{44}') + +%% coherences plot figure(2) imagesc(z_2, t_2, r13_re_out_2); colorbar xlabel('z') |