From d0ca2a0f6ce99520f1df84cf64d5e947a269d4a1 Mon Sep 17 00:00:00 2001 From: minspan1999 Date: Wed, 26 Feb 2020 22:12:05 -0500 Subject: [PATCH] Update Htop.m --- Htop.m | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/Htop.m b/Htop.m index a521e3f..513a6cd 100644 --- a/Htop.m +++ b/Htop.m @@ -6,4 +6,25 @@ hold on plot(Data(:,1)+30, Data(:,3)) plot(Data(:,1)+30, Data(:,4)) -plot(Data(:,1)+30, Data(:,5)) \ No newline at end of file +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); +