This is a static copy of a profile report

Home

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

Parents (calling functions)

Function NameFunction TypeCalls
calculate_allelic_ratio_cutoffsscript12
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
13
x = flip(x,2);
120 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 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 array 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 

     12 
  13 
x = flip(x,2);