To plot out all the raoch channels in 4 figures
0001 % To plot out all the raoch channels in 4 figures 0002 for i=1:4 0003 figure(i) 0004 for j=1:16 0005 subplot(4,4,j) 0006 chan=(i-1)*16+j 0007 plot(data.antenna0.roach2.LL(:,chan)) 0008 ylim([0 5e5]) 0009 xlabel(['Chan ',num2str(chan)]) 0010 end 0011 gtitle('Roach2 LL') 0012 end