flipud (Calls: 15, Time: 0.002 s)
Generated 28-Jun-2020 10:10:23 using performance time.
function in file /Applications/MATLAB_R2018a.app/toolbox/matlab/elmat/flipud.m
Copy to new window for comparing multiple runs
Function Name | Function Type | Calls |
captureFigures | function | 10 |
...Figures>PublishFigures.leavingCell | class method | 5 |
Line Number | Code | Calls | Total Time | % Time | Time Plot |
14 | x = flip(x,1); | 15 | 0.002 s | 91.1% | |
All other lines | 0.000 s | 8.9% | |||
Totals | 0.002 s | 100% |
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
flip | function | 15 | 0.001 s | 52.8% | |
Self time (built-ins, overhead, etc.) | 0.001 s | 47.2% | |||
Totals | 0.002 s | 100% |
Total lines in function | 14 |
Non-code lines (comments, blank lines) | 13 |
Code lines (lines that can run) | 1 |
Code lines that did run | 1 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
time | Calls | line | |
---|---|---|---|
1 | function x = flipud(x) | ||
2 | %FLIPUD Flip array in up/down direction. | ||
3 | % Y = FLIPUD(X) returns X with the order of elements flipped upside down | ||
4 | % along the first dimension. For example, | ||
5 | % | ||
6 | % X = 1 4 becomes 3 6 | ||
7 | % 2 5 2 5 | ||
8 | % 3 6 1 4 | ||
9 | % | ||
10 | % See also FLIPLR, ROT90, FLIP. | ||
11 | |||
12 | % Copyright 1984-2013 The MathWorks, Inc. | ||
13 | |||
0.002 | 15 | 14 | x = flip(x,1); |
Other subfunctions in this file are not included in this listing.