OperatorRightVectorMult

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

Bases: Operator

Expression type for the operator right vector multiplication.

OperatorRightVectorMult(op, y)(x) == op(y * x)

The scalar multiplication is well-defined only if y is in op.domain.

__init__(operator, vector)[source]

Initialize a new OperatorRightVectorMult instance.

Parameters

operatorOperator

The domain of operator must be a vector.space.

vectorop.domain element

The fixed element to multiply with.