Changeset 1994 for trunk/python
- Timestamp:
- 02/16/11 14:59:40 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/scantable.py
r1992 r1994 1014 1014 1015 1015 @asaplog_post_dec 1016 def flag(self, mask=None, unflag=False):1016 def flag(self, row=-1, mask=None, unflag=False): 1017 1017 """\ 1018 1018 Flag the selected data using an optional channel mask. … … 1020 1020 Parameters: 1021 1021 1022 row: an optional row number in the scantable. 1023 Default -1 flags all rows 1024 1022 1025 mask: an optional channel mask, created with create_mask. Default 1023 1026 (no mask) is all channels. … … 1028 1031 varlist = vars() 1029 1032 mask = mask or [] 1030 self._flag( mask, unflag)1033 self._flag(row, mask, unflag) 1031 1034 self._add_history("flag", varlist) 1032 1035
Note:
See TracChangeset
for help on using the changeset viewer.