This is a static copy of a profile reportHome
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 Name | Function Type | Calls |
reduceData | function | 1 |
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
24 | packd(d, [], 'none', 'intent',... | 1 | 6.427 s | 43.0% |  |
23 | packd(d, [], 'none', 'plot_sou... | 1 | 4.000 s | 26.8% |  |
21 | packd(d, [], 'none', 'cone_tem... | 1 | 1.650 s | 11.0% |  |
18 | packd(d, [], 'none', 'az_el', ... | 1 | 1.574 s | 10.5% |  |
22 | packd(d, [], 'none', 'wx', plo... | 1 | 0.437 s | 2.9% |  |
All other lines | | | 0.863 s | 5.8% |  |
Totals | | | 14.952 s | 100% | |
Children (called functions)
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
packd | function | 7 | 14.865 s | 99.4% |  |
setPlotDisplay | function | 1 | 0.022 s | 0.1% |  |
Self time (built-ins, overhead, etc.) | | | 0.066 s | 0.4% |  |
Totals | | | 14.952 s | 100% | |
Code Analyzer results
Line number | Message |
1 | Extra semicolon is unnecessary. |
12 | EXIST with two input arguments is generally faster and clearer than with one input argument. |
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 26 |
Non-code lines (comments, blank lines) | 14 |
Code lines (lines that can run) | 12 |
Code lines that did run | 10 |
Code lines that did not run | 2 |
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.