This is a static copy of a profile reportHome
maketform>inv_box (1721 calls, 1.492 sec)
Generated 05-Nov-2014 07:53:11 using cpu time.
subfunction in file /usr1/opt/matlab/7.13/toolbox/images/images/maketform.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
724 | U = bsxfun(@rdivide, U, t.tdat... | 1721 | 0.951 s | 63.8% |  |
723 | U = bsxfun(@minus, X, t.tdata.... | 1721 | 0.521 s | 34.9% |  |
All other lines | | | 0.020 s | 1.3% |  |
Totals | | | 1.492 s | 100% | |
Children (called functions)
No childrenCode Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 9 |
Non-code lines (comments, blank lines) | 7 |
Code lines (lines that can run) | 2 |
Code lines that did run | 2 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
716 function U = inv_box( X, t )
717
718 % INVERSE box transformation
719 %
720 % T is an box transformation structure. X is the row vector to
721 % be transformed, or a matrix with a vector in each row.
722
0.52 1721 723 U = bsxfun(@minus, X, t.tdata.shift);
0.95 1721 724 U = bsxfun(@rdivide, U, t.tdata.scale);
Other subfunctions in this file are not included in this listing.