This is a static copy of a profile reportHome
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)
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
180 | end | 80 | 0 s | 0% |  |
179 | options = [ options ; platform... | 80 | 0 s | 0% |  |
177 | end | 80 | 0 s | 0% |  |
176 | platform_options = {}; | 80 | 0 s | 0% |  |
175 | else %must be unix | 80 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
ispc | function | 80 | 0 s | 0% |  |
Self time (built-ins, overhead, etc.) | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Code Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 30 |
Non-code lines (comments, blank lines) | 22 |
Code lines (lines that can run) | 8 |
Code lines that did run | 7 |
Code lines that did not run | 1 |
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