This is a static copy of a profile reportHome
savtoner>color2matrix (304 calls, 0.000 sec)
Generated 05-Aug-2011 13:03:36 using cpu time.
nested function in file /usr/local/MATLAB/R2011a/toolbox/matlab/graphics/savtoner.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Function Name | Function Type | Calls |
savtoner | function | 304 |
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
543 | end | 304 | 0 s | 0% |  |
539 | elseif isequal(color, 'flat' ) | 304 | 0 s | 0% |  |
536 | if isequal(color, 'none' ) | 304 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 11 |
Non-code lines (comments, blank lines) | 5 |
Code lines (lines that can run) | 6 |
Code lines that did run | 3 |
Code lines that did not run | 3 |
Coverage (did run/can run) | 50.00 % |
Function listing
time calls line
533 function color = color2matrix( color )
534 %COLOR2MATRIX Return a 1x3 for any color, including strings 'flat' and 'none'
535
304 536 if isequal(color, 'none' )
537 color = NONE;
538
304 539 elseif isequal(color, 'flat' )
540 color = FLAT;
541
542 end
304 543 end
Other subfunctions in this file are not included in this listing.