Changeset 1357
- Timestamp:
- 04/27/07 10:51:10 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapmath.py
r1232 r1357 124 124 as well as the data 125 125 """ 126 varlist = vars() 127 print "Not yet available in asap" 128 return 129 if not isinstance(left,scantable) and not isinstance(right,scantable): 130 msg = "Please provide two scantables as input" 131 if rcParams['verbose']: 132 print msg 133 return 134 else: 135 raise TypeError(msg) 136 s = scantable(stm._bop(left, right, op, tsys)) 137 s._add_history("simple_math", varlist) 138 print_log() 139 return s 126 print "simple_math is deprecated use +=/* instead." 140 127 141 128 def merge(*args):
Note:
See TracChangeset
for help on using the changeset viewer.