This is a static copy of a profile report

Home

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

Parents (calling functions)

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

Line NumberCodeCallsTotal Time% TimeTime Plot
19
end
60 s0%
17
isF = ishghandle(h, 'figure');
60 s0%
13
if nargin < 1
60 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 function19
Non-code lines (comments, blank lines)14
Code lines (lines that can run)5
Code lines that did run3
Code lines that did not run2
Coverage (did run/can run)60.00 %
Function listing
time 
calls 
 line
   1 
function isF = isfigure( h )
   2 
%ISFIGURE True for Figure handles.
   3 
%   ISFIGURE(H) returns an array that contains 1's where the elements
   4 
%   of H are valid Figure handles and 0's where they are not.
   5 

   6 
%   Copyright 1984-2008 The MathWorks, Inc.
   7 

   8 
% NOTE: This is a copy of toolbox/matlab/graphics/private/isfigure.m.
   9 
% If one of these becomes a user-visible function (outside the private 
  10 
% directories) then the other needs to be removed. 
  11 
% Till then, ideally, any change needs to be made in both the files.
  12 

      6 
  13 
if nargin < 1 
  14 
        narginchk(1,1)
  15 
end
  16 

      6 
  17 
isF = ishghandle(h, 'figure'); 
  18 

      6 
  19 
end