OperatorPointwiseProduct

class odl.OperatorPointwiseProduct(*args, **kwargs)

Bases: Operator

Expression type for the pointwise operator multiplication.

OperatorPointwiseProduct(left, right)(x) == left(x) * right(x)

__init__(left: Operator, right: Operator)[source]

Initialize a new instance.

Parameters

leftOperator

The first factor

rightOperator

The second factor. Must have the same domain and range as left.