diff options
-rw-r--r-- | MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m | 8 |
1 files changed, 4 insertions, 4 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 f346fab..a5d61a8 100644 --- a/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m +++ b/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m @@ -15,12 +15,12 @@ xlabel('z (cm)') ylabel('t (uS)') zlabel('I_{dL}') title('I_{dL}') -subplot(2,2,2); imagesc(z_1, (t_1), IpL_out_1.'); colorbar +subplot(2,2,3); imagesc(z_1, (t_1), IpL_out_1.'); colorbar xlabel('z (cm)') ylabel('t (uS)') zlabel('I_{pL}') title('I_{pL}') -subplot(2,2,3); imagesc(z_1, (t_1), IdR_out_1.'); colorbar +subplot(2,2,2); imagesc(z_1, (t_1), IdR_out_1.'); colorbar xlabel('z (cm)') ylabel('t (uS)') zlabel('I_{dR}') @@ -49,7 +49,7 @@ title('I_{dL} before and after cell') legend('before', 'after') %% -subplot(2,2,2); +subplot(2,2,3); plot( ... t_1, (IpL_out_1(1,:)'), ... t_1, (IpL_out_1(end,:)'), 'linewidth', 4 ... @@ -60,7 +60,7 @@ title('I_{pL} before and after cell') legend('before', 'after') %% -subplot(2,2,3); +subplot(2,2,2); plot( ... t_1, (IdR_out_1(1,:)'), ... t_1, (IdR_out_1(end,:)'), 'linewidth', 4 ... |