to allow abs(tr) or numpy.abs([tr1, tr2]) ``` def abs(self): """abs(f) = abs(f(t)).""" return self.operation(None, lambda x, _: x and abs(x)) __abs__ = abs ```