printtables>localBuildOptions (18 calls, 0.000 sec)
Generated 14-Nov-2016 07:47:03 using cpu time.
subfunction in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/graphics/printtables.m
Copy to new window for comparing multiple runs
Function Name | Function Type | Calls |
printtables | function | 18 |
Line Number | Code | Calls | Total Time | % Time | Time Plot |
66 | end | 18 | 0 s | 0% | ![]() |
65 | options = [ options ; platform... | 18 | 0 s | 0% | ![]() |
63 | end | 18 | 0 s | 0% | ![]() |
62 | platform_options = {}; | 18 | 0 s | 0% | ![]() |
61 | else %must be unix | 18 | 0 s | 0% | ![]() |
All other lines | 0 s | 0% | ![]() | ||
Totals | 0 s | 0% |
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
ispc | function | 18 | 0 s | 0% | ![]() |
Self time (built-ins, overhead, etc.) | 0 s | 0% | ![]() | ||
Totals | 0 s | 0% |
Total lines in function | 31 |
Non-code lines (comments, blank lines) | 23 |
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 % |
time | calls | line | |
---|---|---|---|
36 | function options = localBuildOptions | ||
37 | % | ||
38 | % Set up print options table | ||
39 | % | ||
18 | 40 | options = { | |
41 | 'loose' | ||
42 | 'tiff' | ||
43 | 'append' | ||
44 | 'adobecset' | ||
45 | 'cmyk' | ||
46 | 'r' | ||
47 | 'noui' | ||
48 | 'opengl' | ||
49 | 'painters' | ||
50 | 'zbuffer' | ||
51 | 'tileall' | ||
52 | 'printframes' | ||
53 | 'pages' | ||
54 | 'numcopies' %Undocumented, and only for simulink | ||
55 | 'DEBUG' %Undocumented, prints out diagnostic information | ||
56 | }; | ||
57 | |||
18 | 58 | if ispc | |
59 | platform_options = { 'v' }; | ||
60 | |||
18 | 61 | else %must be unix | |
18 | 62 | platform_options = {}; | |
18 | 63 | end | |
64 | |||
18 | 65 | options = [ options ; platform_options ]; | |
18 | 66 | end |
Other subfunctions in this file are not included in this listing.