This is a static copy of a profile reportHome
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)
Lines where the most time was spent
Line Number | Code | Calls | Total Time | % Time | Time Plot |
181 | [info, msg] = readWin3xInfo(fi... | 1 | 0.016 s | 100.0% |  |
180 | case 'win 3' | 1 | 0 s | 0% |  |
177 | case 'win 2' | 1 | 0 s | 0% |  |
176 | switch bmpVersion | 1 | 0 s | 0% |  |
174 | fseek(fid, 0, 'bof'); | 1 | 0 s | 0% |  |
Other lines & overhead | | | 0 s | 0% |  |
Totals | | | 0.016 s | 100% | |
Children (called functions)
M-Lint results
Coverage results
[ Show coverage for parent directory ]
Total lines in file | 28 |
Non-code lines (comments, blank lines) | 13 |
Code lines (lines that can run) | 15 |
Code lines that did run | 5 |
Code lines that did not run | 10 |
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.