This is a static copy of a profile report

Home

arrayBitand (24 calls, 0.044 sec)
Generated 05-Aug-2011 13:03:50 using cpu time.
function in file /home/LeechJ/cbass_analysis/reduc/flag/arrayBitand.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
updateFlagsfunction24
Lines where the most time was spent

Line NumberCodeCallsTotal Time% TimeTime Plot
12
outvector = bitand(outvector, ...
2160.044 s100.0%
15
return;
240 s0%
13
end
2160 s0%
11
for m=2:size(inVector,1)
240 s0%
10
outvector = inVector(1,:);
240 s0%
All other lines  0 s0%
Totals  0.044 s100% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in function15
Non-code lines (comments, blank lines)10
Code lines (lines that can run)5
Code lines that did run5
Code lines that did not run0
Coverage (did run/can run)100.00 %
Function listing
   time   calls  line
1 function outvector = arrayBitand(inVector)
2
3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4 %
5 % function outvector = arrayBitand(inVector)
6 %
7 % so not going to write this out.
8 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
9
24 10 outvector = inVector(1,:);
24 11 for m=2:size(inVector,1)
0.04 216 12 outvector = bitand(outvector, inVector(m,:));
216 13 end
14
24 15 return;