summaryrefslogtreecommitdiff
path: root/xmds2
diff options
context:
space:
mode:
Diffstat (limited to 'xmds2')
-rw-r--r--xmds2/Nlevels_no_dopler_with_z_fast_and_slow_light/pp.m16
1 files changed, 8 insertions, 8 deletions
diff --git a/xmds2/Nlevels_no_dopler_with_z_fast_and_slow_light/pp.m b/xmds2/Nlevels_no_dopler_with_z_fast_and_slow_light/pp.m
index f618c35..ab536be 100644
--- a/xmds2/Nlevels_no_dopler_with_z_fast_and_slow_light/pp.m
+++ b/xmds2/Nlevels_no_dopler_with_z_fast_and_slow_light/pp.m
@@ -28,24 +28,24 @@ print('-color','fields_propagation.eps')
figure(2)
subplot(1,3,1);
plot( ...
- t_1,I1_out_1(:,1),'-;before;', ...
- t_1,I1_out_1(:,end), '-;after;' ...
+ t_1,I1_out_1(:,1),'-;before;', "linewidth", 4, ...
+ t_1,I1_out_1(:,end), '-;after;', "linewidth", 4 ...
)
xlabel('t (uS)')
ylabel('I_1 (1/s)^2')
title('I_1 before and after cell')
subplot(1,3,2);
plot( ...
- t_1,I2_out_1(:,1),'-;before;', ...
- t_1,I2_out_1(:,end), '-;after;' ...
+ t_1,I2_out_1(:,1),'-;before;', "linewidth", 4, ...
+ t_1,I2_out_1(:,end), '-;after;', "linewidth", 4 ...
)
xlabel('t (uS)')
ylabel('I_2 (1/s)^2')
title('I_2 before and after cell')
subplot(1,3,3);
plot( ...
- t_1,I3_out_1(:,1),'-;before;', ...
- t_1,I3_out_1(:,end), '-;after;' ...
+ t_1,I3_out_1(:,1),'-;before;', "linewidth", 4, ...
+ t_1,I3_out_1(:,end), '-;after;', "linewidth", 4 ...
)
xlabel('t (uS)')
ylabel('I_3 (1/s)^2')
@@ -69,8 +69,8 @@ tmin=-0.05;
tmax=0.05;
indx=(t_1>=tmin & t_1<=tmax); % soom in in time to this region
plot( ...
- t_1(indx),I2_in_norm(indx),'-;before;', ...
- t_1(indx),I2_out_norm(indx), '-;after;' ...
+ t_1(indx),I2_in_norm(indx),'-;before;', "linewidth", 4, ...
+ t_1(indx),I2_out_norm(indx), '-;after;', "linewidth", 4 ...
)
xlim([tmin,tmax],'manual');
xlabel('t (uS)')