This is a static copy of a profile reportHome
iptutils\private\iptprefs (3 calls, 0.000 sec)
Generated 15-Mar-2007 12:02:02 using real time.
M-function in file C:\Program Files\MATLAB71\toolbox\images\iptutils\private\iptprefs.m
[Copy to new window for comparing multiple runs]
Parents (calling functions)
Function Name | Function Type | Calls |
iptgetpref | M-function | 3 |
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
29 | OBSOLETE = ''; | 3 | 0.000 s | 100.0% |  |
39 | }; | 3 | 0 s | 0% |  |
30 | preferences = { ... | 3 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.000 s | 100% | |
Children (called functions)
No childrenM-Lint results
No M-Lint messages.Coverage results
[ Show coverage for parent directory ]
Total lines in file | 41 |
Non-code lines (comments, blank lines) | 39 |
Code lines (lines that can run) | 2 |
Code lines that did run | 3 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 150.00 % |
Function listing
time calls line
1 function preferences = iptprefs
2 %IPTPREFS Image Processing Toolbox preference settings.
3 % IPTPREFS returns a 3-column cell array containing the Image
4 % Processing Toolbox preference settings. Each row contains
5 % information about a single preference.
6 %
7 % The first column of each row contains a cell array with a maximum
8 % of two elements. The first element indicates the current preference
9 % name and the second element, if it exists, indicates the obsoleted
10 % preference name. If the first element is empty this indicates that
11 % the preference has simply been obsoleted without a replacement.
12 %
13 % The second column of each row is a cell array containing the set
14 % of acceptable values for that preference setting. An empty cell
15 % array indicates that the preference does not have a fixed set of
16 % values.
17 %
18 % The third column of each row contains a single-element cell
19 % array containing the default value for the preference. An
20 % empy cell array indicates that the preference does not have a
21 % default value.
22 %
23 % See also IPTSETPREF, IPTGETPREF.
24
25 % Copyright 1993-2004 The MathWorks, Inc.
26 % $Revision: 1.1.8.1 $ $Date: 2005/05/27 14:07:52 $
27
28
< 0.01 3 29 OBSOLETE = '';
3 30 preferences = { ...
31 {'ImshowBorder'}, {'tight'; 'loose'}, {'loose'}
32 {'ImshowAxesVisible'}, {'on'; 'off'}, {'off'}
33 {'ImshowInitialMagnification',...
34 'ImshowTruesize'}, {100; 'fit'}, {100}
35 {OBSOLETE,...
36 'TruesizeWarning'} {'on'; 'off'}, {'on'}
37 {'ImtoolInitialMagnification',...
38 'ImviewInitialMagnification'}, {100; 'fit' ; 'adaptive' }, {'adaptive'}
3 39 };
40
41