0001
0002 d_1 = read_arcSouth('12-Jan-2013:17:00:00','12-Jan-2013:17:12:00');
0003
0004
0005
0006
0007
0008 d_2 = read_arcSouth('26-Dec-2012:19:42:37','26-Dec-2012:21:48:55');
0009
0010 on=d_1.antenna0.roach1.LL(d_1.antenna0.roach1.switchstatus==1,:);
0011 off=d_1.antenna0.roach1.LL(~(d_1.antenna0.roach1.switchstatus==1),:);
0012
0013 subplot(311)
0014 plot(mean(on,2))
0015 hold all
0016 plot(mean(off,2))
0017
0018 subplot(312)
0019 plot(d_1.antenna0.roach1.LL)
0020
0021 subplot(313)
0022
0023 plot(d_1.antenna0.roach1.Q)
0024 hold all
0025 plot(d_1.antenna0.roach1.U)
0026 ylim([-500 500])
0027
0028 figure
0029 LL=d_1.antenna0.roach1.LL;
0030 Load2=d_1.antenna0.roach1.load2;
0031
0032 LLBalanced= LL-Load2;
0033 onBalanced = LLBalanced(d_1.antenna0.roach1.switchstatus==1,:);
0034 offBalanced = LLBalanced(~(d_1.antenna0.roach1.switchstatus==1),:);
0035 subplot(211)
0036 plot(LLBalanced)
0037 subplot(212)
0038 plot(mean(onBalanced,2))
0039 hold all
0040 plot(mean(offBalanced,2))