This is a static copy of a profile report

Home

printtables>localBuildOptions (80 calls, 0.000 sec)
Generated 05-Aug-2011 13:01:20 using cpu time.
subfunction in file /usr/local/MATLAB/R2011a/toolbox/matlab/graphics/printtables.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
printtablesfunction80
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
180
end
800 s0%
179
options = [ options ; platform...
800 s0%
177
end
800 s0%
176
platform_options = {};
800 s0%
175
else %must be unix
800 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
ispcfunction800 s0%
Self time (built-ins, overhead, etc.)  0 s0%
Totals  0 s0% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in function30
Non-code lines (comments, blank lines)22
Code lines (lines that can run)8
Code lines that did run7
Code lines that did not run1
Coverage (did run/can run)87.50 %
Function listing
   time   calls  line
151 function options = localBuildOptions
152 %
153 % Set up print options table
154 %
80 155 options = {
156 'loose'
157 'tiff'
158 'append'
159 'adobecset'
160 'cmyk'
161 'r'
162 'noui'
163 'opengl'
164 'painters'
165 'zbuffer'
166 'tileall'
167 'printframes'
168 'pages'
169 'DEBUG' %Undocumented, prints out diagnostic information
170 };
171
80 172 if ispc
173 platform_options = { 'v' };
174
80 175 else %must be unix
80 176 platform_options = {};
80 177 end
178
80 179 options = [ options ; platform_options ];
80 180 end