Package ComboCode :: Package cc :: Package ivs :: Package units :: Package uncertainties :: Package unumpy :: Module ulinalg
[hide private]
[frames] | no frames]

Source Code for Module ComboCode.cc.ivs.units.uncertainties.unumpy.ulinalg

 1  """ 
 2  This module provides uncertainty-aware functions that generalize some 
 3  of the functions from numpy.linalg. 
 4   
 5  (c) 2010 by Eric O. LEBIGOT (EOL) <eric.lebigot@normalesup.org>. 
 6  """ 
 7   
 8  from cc.ivs.units.uncertainties import __author__ 
 9  from . 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