|
From: <jd...@us...> - 2008-07-24 13:15:25
|
Revision: 5834
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5834&view=rev
Author: jdh2358
Date: 2008-07-24 13:15:23 +0000 (Thu, 24 Jul 2008)
Log Message:
-----------
deprecated mlab2 functions from mlab
Modified Paths:
--------------
branches/v0_91_maint/lib/matplotlib/mlab.py
Modified: branches/v0_91_maint/lib/matplotlib/mlab.py
===================================================================
--- branches/v0_91_maint/lib/matplotlib/mlab.py 2008-07-24 13:03:26 UTC (rev 5833)
+++ branches/v0_91_maint/lib/matplotlib/mlab.py 2008-07-24 13:15:23 UTC (rev 5834)
@@ -1768,52 +1768,47 @@
def rem(x,y):
"""
- Deprecated -- see numpy.remainder
+ Deprecated - see numpy.remainder
"""
raise NotImplementedError('Deprecated - see numpy.remainder')
def norm(x,y=2):
"""
- Deprecated -- see numpy.linalg.norm
+ Deprecated - see numpy.linalg.norm
"""
raise NotImplementedError('Deprecated - see numpy.linalg.norm')
-
def orth(A):
"""
- Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you
- need this function
+ Deprecated - needs clean room implementation
"""
- raise NotImplementedError('Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you need this function')
+ raise NotImplementedError('Deprecated - needs clean room implementation')
def rank(x):
"""
- Deprecated -- see numpy.rank
+ Deprecated - see numpy.rank
"""
raise NotImplementedError('Deprecated - see numpy.rank')
def sqrtm(x):
"""
- Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you
- need this function
+ Deprecated - needs clean room implementation
"""
- raise NotImplementedError('Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you need this function')
+ raise NotImplementedError('Deprecated - needs clean room implementation')
def mfuncC(f, x):
"""
- Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you
- need this function
+ Deprecated
"""
- raise NotImplementedError('Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you need this function')
+ raise NotImplementedError('Deprecated - needs clean room implementation')
def approx_real(x):
"""
- Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you
- need this function
+ Deprecated - needs clean room implementation
"""
- raise NotImplementedError('Deprecated -- use http://pdilib.sourceforge.net/MLab2.py if you need this function')
+ raise NotImplementedError('Deprecated - needs clean room implementation')
#helpers for loading, saving, manipulating and viewing numpy record arrays
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|