This is a static copy of a profile report

Home

flagTsys (1 call, 0.000 sec)
Generated 05-Aug-2011 13:03:52 using cpu time.
function in file /home/LeechJ/cbass_analysis/reduc/flag/flagTsys.m
Copy to new window for comparing multiple runs

Parents (calling functions)

Function NameFunction TypeCalls
tsysWrapperfunction1
Lines where the most time was spent
No measurable time spent in this function

Line NumberCodeCallsTotal Time% TimeTime Plot
19
return;
10 s0%
17
tsysflag = tsysVals.val > f...
10 s0%
15
noiseflag = tsysVals.tnoise>...
10 s0%
All other lines  0 s0%
Totals  0 s0% 
Children (called functions)
No children
Code Analyzer results
No Code Analyzer messages.
Coverage results
[ Show coverage for parent directory ]
Total lines in function19
Non-code lines (comments, blank lines)16
Code lines (lines that can run)3
Code lines that did run3
Code lines that did not run0
Coverage (did run/can run)100.00 %
Function listing
   time   calls  line
1 function [noiseflag tsysflag] = flagTsys(tsysVals, flagParams)
2
3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
4 %
5 % function flag = flagTsys(tsysVals, flagParams)
6 %
7 %
8 % flags on the calculated noise diode temperature and the actual system
9 % temperature
10 %
11 % sjcm
12 %
13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
14
1 15 noiseflag = tsysVals.tnoise>flagParams(1) | tsysVals.tnoise < flagParams(2);
16
1 17 tsysflag = tsysVals.val > flagParams(3) | tsysVals.val < flagParams(4);
18
1 19 return;