This is a static copy of a profile report

Home

imagesci\private\imbmpinfo>readBMPInfo (1 call, 0.016 sec)
Generated 15-Mar-2007 12:01:58 using real time.
M-subfunction in file C:\Program Files\MATLAB71\toolbox\matlab\imagesci\private\imbmpinfo.m
[Copy to new window for comparing multiple runs]

Parents (calling functions)

Function NameFunction TypeCalls
imagesci\private\imbmpinfoM-function1
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
181
[info, msg] = readWin3xInfo(fi...
10.016 s100.0%
180
case 'win 3'
10 s0%
177
case 'win 2'
10 s0%
176
switch bmpVersion
10 s0%
174
fseek(fid, 0, 'bof');
10 s0%
Other lines & overhead  0 s0%
Totals  0.016 s100% 
Children (called functions)

Function NameFunction TypeCallsTotal Time% TimeTime Plot
imagesci\private\imbmpinfo>readWin3xInfoM-subfunction10.016 s100.0%
Self time (built-ins, overhead, etc.)  0 s0%
Totals  0.016 s100% 
M-Lint results
Line numberMessage
Coverage results
[ Show coverage for parent directory ]
Total lines in file28
Non-code lines (comments, blank lines)13
Code lines (lines that can run)15
Code lines that did run5
Code lines that did not run10
Coverage (did run/can run)33.33 %
Function listing
   time   calls  line
171 function [info, msg] = readBMPInfo(fid, bmpVersion, info)
172 %READBMPINFO Read the metadata from the bitmap headers.
173
1 174 fseek(fid, 0, 'bof');
175
1 176 switch bmpVersion
1 177 case 'win 2'
178 [info, msg] = readWin2xInfo(fid, info);
179
1 180 case 'win 3'
0.02 1 181 [info, msg] = readWin3xInfo(fid, info);
182
183 case 'win 4'
184 [info, msg] = readWin4xInfo(fid, info);
185
186 case 'win 5'
187 [info, msg] = readWin5xInfo(fid, info);
188
189 case 'OS2 2'
190 [info, msg] = readOS2v2Info(fid, info);
191
192 otherwise
193 msg = 'Problem identifying format version';
194
195 end
196
197
198

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