This is a static copy of a profile report

Home

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

Parents (calling functions)

Function NameFunction TypeCalls
saveasfunction6
print>LocalCreatePrintJobsubfunction6
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
22
pj = matlab.graphics.internal....
120.020 s100.0%
24
end
120 s0%
23
end
120 s0%
21
else
120 s0%
19
if useOriginalHGPrinting(varar...
120 s0%
All other lines  0 s0%
Totals  0.020 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
mlprintjob>mlprintjob.mlprintjobsubfunction120.020 s100.0%
graphics/private/useOriginalHGPrintingfunction120 s0%
Self time (built-ins, overhead, etc.)  0 s0%
Totals  0.020 s100% 
Code Analyzer results
No Code Analyzer messages.
Coverage results
Show coverage for parent directory
Total lines in function24
Non-code lines (comments, blank lines)18
Code lines (lines that can run)6
Code lines that did run5
Code lines that did not run1
Coverage (did run/can run)83.33 %
Function listing
time 
calls 
 line
   1 
function pj = printjob(varargin)
   2 
%PRINTJOB Constructor for PrintJob objects.
   3 
%   PrintJob is the object used to encapsulate all the data needed to export
   4 
%   Figures and models from MATLAB and Simulink. Constructor defines every
   5 
%   class variable and gives them default values. Comments in this file 
   6 
%   describe what each variable is for. It is not meant that MATLAB users 
   7 
%   will create PrintJob objects themselves; unless they are trying to take 
   8 
%   full control of the outputting of a Figure or graph. PrintJob is used by
   9 
%   the various MATLAB files that control printing and image output from MATLAB
  10 
%   and Simulink.
  11 
%
  12 
%   Ex:
  13 
%      pj = PRINTJOB; 
  14 
%
  15 
%   See also PRINT.
  16 

  17 
%   Copyright 1984-2013 The MathWorks, Inc.
  18 

     12 
  19 
    if useOriginalHGPrinting(varargin{:}) 
  20 
       pj = getPJStruct();
     12 
  21 
    else 
  0.02 
     12 
  22 
       pj = matlab.graphics.internal.mlprintjob; 
     12 
  23 
    end 
     12 
  24 
end 

Other subfunctions in this file are not included in this listing.