This is a static copy of a profile report

Home

optimset>displayType (26 calls, 0.000 sec)
Generated 14-Nov-2016 07:47:11 using cpu time.
subfunction in file /usr/local/MATLAB/MATLAB_Production_Server/R2015a/toolbox/matlab/optimfun/optimset.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
optimset>checkfieldsubfunction26
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
373
end
260 s0%
372
errmsg = '';
260 s0%
371
errid = '';
260 s0%
370
else
260 s0%
367
if ~valid
260 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)
No children
Code Analyzer results
Line numberMessage
Coverage results
Show coverage for parent directory
Total lines in function11
Non-code lines (comments, blank lines)3
Code lines (lines that can run)8
Code lines that did run6
Code lines that did not run2
Coverage (did run/can run)75.00 %
Function listing
time 
calls 
 line
 363 
function [valid, errmsg, errid] = displayType(field,value)
 364 
% One of these strings: on, off, none, iter, final, notify
     26 
 365 
valid =  ischar(value) && any(strcmp(value, ... 
 366 
    {'on';'off';'none';'iter';'iter-detailed';'final';'final-detailed';'notify';'notify-detailed';'testing';'simplex'}));
     26 
 367 
if ~valid 
 368 
    errid = 'MATLAB:optimset:notADisplayType';
 369 
    errmsg = getString(message(errid, field));
     26 
 370 
else 
     26 
 371 
    errid = ''; 
     26 
 372 
    errmsg = ''; 
     26 
 373 
end 

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