FunctionalRightVectorMult

class odl.functionals.functional.FunctionalRightVectorMult(*args, **kwargs)[source]

Bases: Functional, OperatorRightVectorMult

Expression type for the functional right vector multiplication.

Given a functional func and a vector y in the domain of func, this corresponds to the functional

(func * y)(x) == func(y * x).

__init__(func, vector)[source]

Initialize a new instance.

Parameters

funcFunctional

The domain of func must be a vector.space.

vectordomain element

The vector to multiply by.