This is a static copy of a profile report

Home

introPlots (1 call, 14.952 sec)
Generated 05-Aug-2011 13:03:25 using cpu time.
function in file /home/LeechJ/cbass_analysis/reduc/support/introPlots.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
reduceDatafunction1
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
24
packd(d, [], 'none', 'intent',...
16.427 s43.0%
23
packd(d, [], 'none', 'plot_sou...
14.000 s26.8%
21
packd(d, [], 'none', 'cone_tem...
11.650 s11.0%
18
packd(d, [], 'none', 'az_el', ...
11.574 s10.5%
22
packd(d, [], 'none', 'wx', plo...
10.437 s2.9%
All other lines  0.863 s5.8%
Totals  14.952 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
packdfunction714.865 s99.4%
setPlotDisplayfunction10.022 s0.1%
Self time (built-ins, overhead, etc.)  0.066 s0.4%
Totals  14.952 s100% 
Code Analyzer results
Line numberMessage
1Extra semicolon is unnecessary.
12EXIST with two input arguments is generally faster and clearer than with one input argument.
Coverage results
[ Show coverage for parent directory ]
Total lines in function26
Non-code lines (comments, blank lines)14
Code lines (lines that can run)12
Code lines that did run10
Code lines that did not run2
Coverage (did run/can run)83.33 %
Function listing
   time   calls  line
1 function introPlots(d, plotparams, field);
2
3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4 %
5 % function introPlots(d, plotparams, field);
6 %
7 % plots az/el, cold_load, and receiver temps
8 %
9 % sjcm
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
1 12 if (~exist('plotparams'))
13 error('Need plotting parameters');
14 end
15 % if we don't want to see the plots
16
0.02 1 17 setPlotDisplay(plotparams.plot);
1.57 1 18 packd(d, [], 'none', 'az_el', plotparams, [], field);
0.43 1 19 packd(d, [], 'none', 'rx_temp', plotparams, [], field);
0.42 1 20 packd(d, [], 'none', 'cold_load', plotparams, [], field);
1.65 1 21 packd(d, [], 'none', 'cone_temp', plotparams, [], field);
0.44 1 22 packd(d, [], 'none', 'wx', plotparams, [], field);
4.00 1 23 packd(d, [], 'none', 'plot_sources', plotparams, [], field);
6.43 1 24 packd(d, [], 'none', 'intent', plotparams, 'Intent Plots', field);
25
1 26 return;

Other subfunctions in this file are not included in this listing.