typo in Regularization.py

This commit is contained in:
Lindsey Heagy
2016-02-19 17:43:50 -08:00
parent e4a3e0a16d
commit b5f4d8e999
+1 -1
View File
@@ -55,7 +55,7 @@ class BaseRegularization(object):
@property
def W(self):
"""Full regularization weighting matrix W."""
return self._Pac.T * sp.identity(self.mesh.nC) * self. # or do we want sp.identity(self.mesh.nC) or even just Utils.Identity() ?
return self._Pac.T * sp.identity(self.mesh.nC) * self._Pac # or do we want sp.identity(self.mesh.nC) or even just Utils.Identity() ?
@property
def _Pac(self):