0001
0002
0003
0004
0005
0006 lambda=transpose(300:2:1000);
0007
0008
0009 eAg=epsAg(lambda);
0010 eAu=epsAu(lambda);
0011
0012
0013
0014
0015
0016
0017 scrsz = get(0,'ScreenSize');
0018 figAspectRatio=3;
0019 figWidth=3/4*scrsz(3);
0020 figure('Name','Fig. E.3', ...
0021 'Position',[(scrsz(3)-figWidth)/2 scrsz(4)-150-figWidth/figAspectRatio figWidth figWidth/figAspectRatio]);
0022
0023
0024 subplot(1,2,1);
0025 plot(lambda,real(eAu),'-',lambda,real(eAg),':');
0026
0027 axis([301 1000 -48 0]);
0028 xlabel('Wavelength [nm]');
0029 ylabel('Re(\epsilon(\omega)');
0030 legend('Gold','Silver');
0031
0032
0033 subplot(1,2,2);
0034 plot(lambda,imag(eAu),'-',lambda,imag(eAg),':');
0035
0036 axis([301 1000 0 5.9]);
0037 xlabel('Wavelength [nm]');
0038 ylabel('Im(\epsilon(\omega)');
0039 legend('Gold','Silver');
0040
0041
0042
0043