Skip to content

Commit

Permalink
Update Htop.m
Browse files Browse the repository at this point in the history
  • Loading branch information
minspan1999 committed Feb 27, 2020
1 parent 1a74fec commit d0ca2a0
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion Htop.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,25 @@
hold on
plot(Data(:,1)+30, Data(:,3))
plot(Data(:,1)+30, Data(:,4))
plot(Data(:,1)+30, Data(:,5))
plot(Data(:,1)+30, Data(:,5))
set(gcf, 'Position', [00, 00, 400, 300]);
xlim([30 530])
legend('150nm', '200nm', '250nm', '300nm')
xlabel('thickness of top SiO2 layer')
ylabel('Re[neff]')
set(gca, 'FontSize', 14);


figure
plot(Data(:,1)+30, imag(Data(:,2)))
hold on
plot(Data(:,1)+30, imag(Data(:,3)))
plot(Data(:,1)+30, imag(Data(:,4)))
plot(Data(:,1)+30, imag(Data(:,5)))
set(gcf, 'Position', [00, 00, 400, 300]);
xlim([30 530])
legend('150nm', '200nm', '250nm', '300nm')
xlabel('thickness of top SiO2 layer')
ylabel('Im[neff]')
set(gca, 'FontSize', 14);

0 comments on commit d0ca2a0

Please sign in to comment.