Changeset 1040 for trunk/web/tutorials/tutorial2.html
- Timestamp:
- 04/27/06 14:08:06 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web/tutorials/tutorial2.html
r680 r1040 88 88 quotients = [] # to hold the quotient scantables 89 89 for scan in vec: # loop over input scantables 90 on = scan.get_source("*_S") 91 off = scan.get_source("*_R") 92 quotients.append(quotient(on,off)) # add this quotient to the vector 90 quotients.append(scan.auto_quotient()) # add this quotient to the vector 93 91 </pre></div> 94 92 Let's have a look at the vector, and subtract a baseline … … 96 94 for q in quotients: 97 95 print q 98 q.auto_poly_baseline(order=1,insitu=True) 96 q.auto_poly_baseline(order=1,insitu=True) 99 97 </pre></div> 100 98 Now we average the lot together:
Note:
See TracChangeset
for help on using the changeset viewer.