This is a static copy of a profile reportHome
maketform>inv_composite (1721 calls, 6.399 sec)
Generated 05-Nov-2014 07:53:09 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 |
544 | U = feval(t.tdata(i).inverse_f... | 5163 | 6.359 s | 99.4% |  |
542 | U = X; | 1721 | 0.020 s | 0.3% |  |
545 | end | 5163 | 0 s | 0% |  |
543 | for i = 1:N | 1721 | 0 s | 0% |  |
541 | N = length(t.tdata); | 1721 | 0 s | 0% |  |
All other lines | | | 0.020 s | 0.3% |  |
Totals | | | 6.399 s | 100% | |
Children (called functions)
Code Analyzer results
Coverage results
[ Show coverage for parent directory ]
Total lines in function | 12 |
Non-code lines (comments, blank lines) | 7 |
Code lines (lines that can run) | 5 |
Code lines that did run | 5 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
534 function U = inv_composite( X, t )
535
536 % INVERSE composite transformation
537 %
538 % X is the row vector to be transformed, or
539 % a matrix with a vector in each row.
540
1721 541 N = length(t.tdata);
0.02 1721 542 U = X;
1721 543 for i = 1:N
6.36 5163 544 U = feval(t.tdata(i).inverse_fcn, U, t.tdata(i));
5163 545 end
Other subfunctions in this file are not included in this listing.