This is a static copy of a profile reportHome
iptutils/private/iptprefsinfo (2 calls, 0.000 sec)
Generated 05-Nov-2014 07:53:12 using cpu time.
function in file /usr1/opt/matlab/7.13/toolbox/images/iptutils/private/iptprefsinfo.m
Copy to new window for comparing multiple runs
Parents (calling functions)
Function Name | Function Type | Calls |
iptgetpref | function | 2 |
Lines where the most time was spent
No measurable time spent in this functionLine Number | Code | Calls | Total Time | % Time | Time Plot |
30 | }; | 2 | 0 s | 0% |  |
23 | pref_info = { ... | 2 | 0 s | 0% |  |
All other lines | | | 0 s | 0% |  |
Totals | | | 0 s | 0% | |
Children (called functions)
No childrenCode Analyzer results
No Code Analyzer messages.Coverage results
[ Show coverage for parent directory ]
Total lines in function | 30 |
Non-code lines (comments, blank lines) | 28 |
Code lines (lines that can run) | 2 |
Code lines that did run | 2 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
Function listing
time calls line
1 function pref_info = iptprefsinfo
2 %IPTPREFSINFO Image Processing Toolbox preference information.
3 % IPTPREFSINFO returns a 3-column cell array containing information
4 % about each Image Processing Toolbox preference. Each row contains
5 % information about a single preference.
6 %
7 % The first column of each row contains a cell array with one element.
8 % that indicates the current preference name.
9 %
10 % The second column of each row is a cell array containing the set of
11 % acceptable values for that preference setting. An empty cell array
12 % indicates that the preference does not have a fixed set of values.
13 %
14 % The third column of each row contains a single-element cell array
15 % containing the default value for the preference. An empy cell array
16 % indicates that the preference does not have a default value.
17 %
18 % See also IPTSETPREF, IPTGETPREF, IPTPREFS.
19
20 % Copyright 2008-2011 The MathWorks, Inc.
21 % $Revision: 1.1.6.2 $ $Date: 2011/03/28 04:33:03 $
22
2 23 pref_info = { ...
24 {'ImshowBorder'}, {'tight'; 'loose'}, {'loose'}
25 {'ImshowAxesVisible'}, {'on'; 'off'}, {'off'}
26 {'ImshowInitialMagnification'}, {100; 'fit'}, {100}
27 {'ImtoolStartWithOverview'}, {true; false}, {false}
28 {'ImtoolInitialMagnification'}, {100; 'fit' ; 'adaptive' }, {'adaptive'}
29 {'UseIPPL'}, {true; false}, {true}
2 30 };