pylops.utils.describe.describe

pylops.utils.describe.describe(Op)[source]

Describe a PyLops operator

New in version 1.17.0.

Convert a PyLops operator into a sympy mathematical formula. This routine is useful both for debugging and educational purposes.

Note that users can add a name to each operator prior to running the describe method, i.e. Op.name='Opname'. Alternatively, each of the PyLops operator that composes the operator Op is automatically assigned a name. Moreover, note that the symbols \(T\) and \(\dagger\) are used in the mathematical expressions to indicate transposed and adjoint operators, respectively.

Parameters:
Op : pylops.LinearOperator

Linear Operator to describe

Examples using pylops.utils.describe.describe