Changeset 580 for branches/Release-1-fixes/python
- Timestamp:
- 04/08/05 14:33:48 (20 years ago)
- Location:
- branches/Release-1-fixes/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Release-1-fixes/python/asapmath.py
r558 r580 59 59 preserve: you can preserve (default) the continuum or 60 60 remove it. The equations used are 61 preserve - Output = Tref * (sig/ref) - Tref62 remove - Output = Tref * (sig/ref) - Tsig61 preserve: Output = Toff * (on/off) - Toff 62 remove: Output = Toff * (on/off) - Ton 63 63 """ 64 64 varlist = vars() -
branches/Release-1-fixes/python/scantable.py
r577 r580 1258 1258 def quotient(self, other, isreference=True, preserve=True): 1259 1259 """ 1260 Return the quotient of a 'source' (signal) scan and a 'reference' scan. 1260 Return the quotient of a 'source' (on) scan and a 'reference' (off) 1261 scan. 1261 1262 The reference can have just one row, even if the signal has many. 1262 1263 Otherwise they must have the same number of rows. 1263 1264 The cursor of the output scan is set to 0 1264 1265 Parameters: 1265 source:the 'other' scan1266 other: the 'other' scan 1266 1267 isreference: if the 'other' scan is the reference (default) 1267 1268 or source 1268 1269 preserve: you can preserve (default) the continuum or 1269 1270 remove it. The equations used are 1270 preserve - Output = Tref * (sig/ref) - Tref1271 remove - Output = Tref * (sig/ref) - Tsig1271 preserve: Output = Toff * (on/off) - Toff 1272 remove: Output = Tref * (on/off) - Ton 1272 1273 Example: 1273 1274 # src is a scantable for an 'on' scan, ref for an 'off' scantable
Note:
See TracChangeset
for help on using the changeset viewer.