Home > cbassSouthFunctions > ACTFunctions > plot_many_plots.m

plot_many_plots

PURPOSE ^

To plot out all the raoch channels in 4 figures

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

 To plot out all the raoch channels in 4 figures

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

Generated on Sun 14-Jun-2015 17:12:45 by m2html © 2005