This is a static copy of a profile reportHome
smooth>uniformx (30 calls, 0.175 sec)
Generated 05-Aug-2011 13:03:50 using cpu time.
subfunction in file /home/LeechJ/cbass_analysis/matutils/smooth.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Function Name | Function Type | Calls |
smooth | function | 30 |
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
623 | isuniform = all(abs(diff(diffx... | 30 | 0.109 s | 62.5% |  |
620 | if any(isnan(y)) || any(isnan(... | 30 | 0.066 s | 37.5% |  |
624 | end | 30 | 0 s | 0% |  |
622 | else | 30 | 0 s | 0% |  |
All other lines | | | 0.000 s | 0.0% |  |
Totals | | | 0.175 s | 100% | |
Children (called functions)
No childrenCode Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 8 |
Non-code lines (comments, blank lines) | 3 |
Code lines (lines that can run) | 5 |
Code lines that did run | 4 |
Code lines that did not run | 1 |
Coverage (did run/can run) | 80.00 % |
Function listing
time calls line
617 function isuniform = uniformx(diffx,x,y)
618 %ISUNIFORM True if x is of the form a:b:c
619
0.07 30 620 if any(isnan(y)) || any(isnan(x))
621 isuniform = false;
30 622 else
0.11 30 623 isuniform = all(abs(diff(diffx)) <= eps*max(abs([x(1),x(end)])));
30 624 end
Other subfunctions in this file are not included in this listing.