Ignore:
Timestamp:
05/04/10 12:42:40 (14 years ago)
Author:
Malte Marquarding
Message:

Replace matplotlib.numerix with numpy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/asaplotbase.py

    r1568 r1739  
    1010from matplotlib.figure import Figure, Text
    1111from matplotlib.font_manager import FontProperties as FP
    12 from matplotlib.numerix import sqrt
     12from numpy import sqrt
    1313from matplotlib import rc, rcParams
    1414from asap import rcParams as asaprcParams
     
    145145        fmt is the line style as in plot().
    146146        """
    147         from matplotlib.numerix import array
    148         from matplotlib.numerix.ma import MaskedArray
     147        from numpy import array
     148        from numpy.ma import MaskedArray
    149149
    150150        if x is None:
Note: See TracChangeset for help on using the changeset viewer.