diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2016-05-12 16:50:58 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2016-05-12 16:50:58 -0400 |
commit | 56b75214463c11159ae577400a19528baee3720c (patch) | |
tree | eb064327accebcf4e5596807182a3aafeb880303 | |
parent | 3e8234c27875209afc0a9a170f129b5bd23dd1f1 (diff) | |
download | noisy_eit_xmds-56b75214463c11159ae577400a19528baee3720c.tar.gz noisy_eit_xmds-56b75214463c11159ae577400a19528baee3720c.zip |
added after the cell EIT and MOR signals
-rw-r--r-- | MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m | 12 |
1 files changed, 12 insertions, 0 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 9de8ccb..579925d 100644 --- a/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m +++ b/MOR_5_levels_with_doppler_and_propagation/pp_Nlevels.m @@ -128,6 +128,18 @@ zlabel('I_{mor}') title('I_{mor}') +%% EIT and MOR signals after the cell side by side +figure(3) +plot( ... + t_1, (Ieit(end,:)'), ... + t_1, (Imor(end,:)') + ) +xlabel('t (uS)') +ylabel('I_{eit} or I_{MOR} (1/s)^2') +title('I_{eit} and I_{mor} after cell') +legend('EIT', 'MOR') + + %% return |