Home | Trees | Indices | Help |
---|
|
1 """ 2 This module provides uncertainty-aware functions that generalize some 3 of the functions from numpy.linalg. 4 5 (c) 2010-2013 by Eric O. LEBIGOT (EOL) <eric.lebigot@normalesup.org>. 6 """ 7 8 from cc.ivs.sigproc.lmfit.uncertainties import __author__ 9 import core 10 11 # This module cannot import unumpy because unumpy imports this module. 12 13 __all__ = ['inv', 'pinv'] 14 15 inv = core._inv 16 pinv = core._pinv 17
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Mon Nov 7 18:02:02 2016 | http://epydoc.sourceforge.net |