This is a static copy of a profile report

Home

flipud (37 calls, 0.000 sec)
Generated 14-Nov-2016 07:47:13 using cpu time.
function in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/elmat/flipud.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
...vate/areaHelper>localComputeCoordssubfunction37
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
14
x = flip(x,1);
370 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function14
Non-code lines (comments, blank lines)13
Code lines (lines that can run)1
Code lines that did run1
Code lines that did not run0
Coverage (did run/can run)100.00 %
Function listing
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 

     37 
  14 
x = flip(x,1);