diff --git a/RTX class/BalazsAperture.m b/RTX class/BalazsAperture.m index f7470050ef82960b2da8df2643ce52d0179b2fd8..2620436caa0ecb68128b10fcf87f7d1efde5c456 100644 --- a/RTX class/BalazsAperture.m +++ b/RTX class/BalazsAperture.m @@ -32,15 +32,16 @@ classdef BalazsAperture < Aperture subplot(2,1,1); stem(x, abs(histogram),'MarkerSize',0.001); - title("Apertúrán áthaladó sugarak száma"); + title("Apertúra megvilágítsáfüggvénye - amplitúdó"); xlabel("r'"); - ylabel("Sugarak száma"); + ylabel("|E(r')| [V/m]"); xlim([-obj.size/2, obj.size/2]); subplot(2,1,2); stem(x, angle(histogram),'MarkerSize',0.001); title("Apertúra megvilágításfüggvénye - fázis"); xlabel("r'"); + ylabel("arg|E(r')| [rad]"); xlim([-obj.size/2, obj.size/2]); ylim([-pi, pi]); yticks([-pi, -3*pi/4, -pi/2, -pi/4, 0, pi/4, pi/2, 3*pi/4, pi]); diff --git a/RTX class/SegmentedAperture.m b/RTX class/SegmentedAperture.m index 66a011a7be4656bf3c7b8206953967bbb4b4b207..ad93423cd9b691bc1f04631060f6a0929b9a9e7f 100644 --- a/RTX class/SegmentedAperture.m +++ b/RTX class/SegmentedAperture.m @@ -42,7 +42,7 @@ classdef SegmentedAperture < Aperture plot(x(:), abs(h(:)), 'LineWidth', 1.5); title("Apertúra megvilágítsáfüggvénye - amplitúdó"); xlabel("r'"); - ylabel("|E(r')|"); + ylabel("|E(r')| [V/m]"); xlim([-obj.size/2, obj.size/2]);