This is a static copy of a profile report

Home

fliplr (403 calls, 3.285 sec)
Generated 04-Aug-2014 13:05:14 using cpu time.
function in file /share/apps/matlabr2014a/toolbox/matlab/elmat/fliplr.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
meshdomainfunction3
DOorthnormfunction400
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
13
x = flip(x,2);
4033.279 s99.8%
All other lines  0.006 s0.2%
Totals  3.285 s100% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function13
Non-code lines (comments, blank lines)12
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 = fliplr(x)
   2 
%FLIPLR Flip matrix in left/right direction.
   3 
%   Y = FLIPLR(X) returns X with the order of elements flipped left to right
   4 
%   along the second dimension. For example,
   5 
%   
   6 
%   X = 1 2 3     becomes  3 2 1
   7 
%       4 5 6              6 5 4
   8 
%
   9 
%   See also FLIPUD, ROT90, FLIP.
  10 

  11 
%   Copyright 1984-2013 The MathWorks, Inc.
  12 

  3.28 
    403 
  13 
x = flip(x,2);