diff options
-rw-r--r-- | MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m b/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m index 0991c97..8bdf885 100644 --- a/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m +++ b/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m @@ -4,24 +4,24 @@ Nlevels_with_MOR z_1=z_1*100; % z in cm t_1=t_1*1e6; % time now measured in uS figure(1) -subplot(2,2,1); imagesc(z_1, t_1, IdL_out_1); colorbar -xlabel('z (cm)') -ylabel('t (uS)') +subplot(2,2,1); imagesc(t_1, z_1, IdL_out_1); colorbar +ylabel('z (cm)') +xlabel('t (uS)') zlabel('I_{dL}') title('I_{dL}') -subplot(2,2,2); imagesc(z_1, t_1, IpL_out_1); colorbar -xlabel('z (cm)') -ylabel('t (uS)') +subplot(2,2,2); imagesc(t_1, z_1, IpL_out_1); colorbar +ylabel('z (cm)') +xlabel('t (uS)') zlabel('I_{pL}') title('I_{pL}') -subplot(2,2,3); imagesc(z_1, t_1, IdR_out_1); colorbar -xlabel('z (cm)') -ylabel('t (uS)') +subplot(2,2,3); imagesc(t_1, z_1, IdR_out_1); colorbar +ylabel('z (cm)') +xlabel('t (uS)') zlabel('I_{dR}') title('I_{dR}') -subplot(2,2,4); imagesc(z_1, t_1, IpR_out_1); colorbar -xlabel('z (cm)') -ylabel('t (uS)') +subplot(2,2,4); imagesc(t_1, z_1, IpR_out_1); colorbar +ylabel('z (cm)') +xlabel('t (uS)') zlabel('I_{pR}') title('I_{pR}') |