PyLops / pylops

PyLops – A Linear-Operator Library for Python
https://pylops.readthedocs.io
GNU Lesser General Public License v3.0
430 stars 102 forks source link

fix: change BlendingContinuous to work with pylops solvers #546

Closed mrava87 closed 1 year ago

mrava87 commented 1 year ago

BlendingContinuous matvec/rmatvec used and .H for some internal calls to operators, which does not allow running this operator with pylops solvers as they disable ndarray_multiplication. Changing this to matvec/rmatvec calls followed by reshape enables the use of this operator with pylops solvers.