Closed
Description
It would be great if ODL was supporting Bregman distances. An easy way would be to define it as a function of x as (here without ODL):
given y and p
def BregmanG(x): return g(x) - g(y) - p.inner(x-y)
Is there a way to do this nicely in ODL? One would need to define a functional that does x -> p.inner(x-y).