Changeset 1357


Ignore:
Timestamp:
04/27/07 10:51:10 (17 years ago)
Author:
mar637
Message:

deprecated simple_math

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asapmath.py

    r1232 r1357  
    124124                       as well as the data
    125125    """
    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."
    140127
    141128def merge(*args):
Note: See TracChangeset for help on using the changeset viewer.