Changeset 1280 for trunk/python
- Timestamp:
- 11/03/06 16:08:22 (18 years ago)
- Location:
- trunk/python
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/__init__.py
r1259 r1280 355 355 356 356 __date__ = '$Date$'.split()[1] 357 __version__ = '2.1 '357 __version__ = '2.1.1b' 358 358 359 359 def is_ipython(): -
trunk/python/scantable.py
r1268 r1280 77 77 def save(self, name=None, format=None, overwrite=False): 78 78 """ 79 Store the scantable on disk. This can be an asap (aips++) Table, SDFITS,80 ImageFITS or MS2 format.79 Store the scantable on disk. This can be an asap (aips++) Table, 80 SDFITS or MS2 format. 81 81 Parameters: 82 82 name: the name of the outputfile. For format "ASCII" … … 1223 1223 1224 1224 def auto_poly_baseline(self, mask=[], edge=(0, 0), order=0, 1225 threshold=3, chan_avg_limit=1, plot=False, 1226 1225 threshold=3, chan_avg_limit=1, plot=False, 1226 insitu=None): 1227 1227 """ 1228 1228 Return a scan which has been baselined (all rows) by a polynomial. … … 1243 1243 keep it large as only strong lines affect the 1244 1244 baseline solution. 1245 chan_avg_limit: 1246 1247 1248 1249 1250 1251 1252 users of this method should find the default value 1253 1245 chan_avg_limit: 1246 a maximum number of consequtive spectral channels to 1247 average during the search of weak and broad lines. 1248 The default is no averaging (and no search for weak 1249 lines). If such lines can affect the fitted baseline 1250 (e.g. a high order polynomial is fitted), increase this 1251 parameter (usually values up to 8 are reasonable). Most 1252 users of this method should find the default value 1253 sufficient. 1254 1254 plot: plot the fit and the residual. In this each 1255 1255 indivual fit has to be approved, by typing 'y'
Note:
See TracChangeset
for help on using the changeset viewer.