Changeset 936 for trunk/python
- Timestamp:
- 03/27/06 19:34:37 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/scantable.py
r931 r936 1136 1136 """ 1137 1137 varlist = vars() 1138 self. stm._rotate_linpolphase(self, angle)1138 self._math._rotate_linpolphase(self, angle) 1139 1139 self._add_history("rotate_linpolphase", varlist) 1140 1140 print_log() … … 1153 1153 """ 1154 1154 varlist = vars() 1155 self. stm._rotate_xyphase(self, angle, allaxes)1155 self._math._rotate_xyphase(self, angle) 1156 1156 self._add_history("rotate_xyphase", varlist) 1157 1157 print_log() … … 1163 1163 """ 1164 1164 varlist = vars() 1165 self. stm._swap_linears(self)1165 self._math._swap_linears(self) 1166 1166 self._add_history("swap_linears", varlist) 1167 1167 print_log() … … 1173 1173 """ 1174 1174 varlist = vars() 1175 self. stm._invert_phase(self)1175 self._math._invert_phase(self) 1176 1176 self._add_history("invert_phase", varlist) 1177 1177 print_log()
Note:
See TracChangeset
for help on using the changeset viewer.