More tests on more meshes, IPDeriv returns a function.

This commit is contained in:
rowanc1
2014-06-17 09:47:03 -06:00
parent d2bde11a2a
commit 7d34f596ff
4 changed files with 192 additions and 55 deletions
-7
View File
@@ -349,10 +349,3 @@ class SimPEGLinearOperator(LinearOperator):
@property
def T(self):
return self.__class__((self.shape[1],self.shape[0]),self.rmatvec,rmatvec=self.matvec,matmat=self.matmat)
class DerivOperator(object):
def __init__(self, f):
self.f = f
def __mul__(self, v):
return self.f(v)