This is a static copy of a profile report

Home

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

Parents (calling functions)

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

Line NumberCodeCallsTotal Time% TimeTime Plot
12
b = space(ones(1,n));
20 s0%
11
space = ' ';
20 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 function12
Non-code lines (comments, blank lines)10
Code lines (lines that can run)2
Code lines that did run2
Code lines that did not run0
Coverage (did run/can run)100.00 %
Function listing
time 
calls 
 line
   1 
function b = blanks(n)
   2 
%BLANKS String of blanks.
   3 
%   BLANKS(n) is a string of n blanks.
   4 
%   Use with DISP, e.g.  DISP(['xxx' BLANKS(20) 'yyy']).
   5 
%   DISP(BLANKS(n)') moves the cursor down n lines.
   6 
%
   7 
%   See also CLC, HOME, FORMAT.
   8 

   9 
%   Copyright 1984-2009 The MathWorks, Inc.
  10 

      2 
  11 
space = ' '; 
      2 
  12 
b = space(ones(1,n));