This is a static copy of a profile reportHome
genvarname>isCellString (2 calls, 0.000 sec)
Generated 05-Nov-2014 07:52:56 using cpu time.
subfunction in file /usr1/opt/matlab/7.13/toolbox/matlab/lang/genvarname.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Function Name | Function Type | Calls |
genvarname | function | 2 |
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
165 | isIt = true; | 2 | 0 s | 0% |  |
164 | end | 1 | 0 s | 0% |  |
160 | if ~isString(argin{i}) | 1 | 0 s | 0% |  |
159 | for i = 1:numel(argin) | 2 | 0 s | 0% |  |
158 | if iscell(argin) | 2 | 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 |
genvarname>isString | subfunction | 1 | 0 s | 0% |  |
Self time (built-ins, overhead, etc.) | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Code Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 12 |
Non-code lines (comments, blank lines) | 1 |
Code lines (lines that can run) | 11 |
Code lines that did run | 5 |
Code lines that did not run | 6 |
Coverage (did run/can run) | 45.45 % |
Function listing
time calls line
157 function isIt = isCellString(argin)
2 158 if iscell(argin)
2 159 for i = 1:numel(argin)
1 160 if ~isString(argin{i})
161 isIt = false;
162 return;
163 end
1 164 end
2 165 isIt = true;
166 else
167 isIt = false;
168 end
Other subfunctions in this file are not included in this listing.