conj_exponent¶
- odl.util.utility.conj_exponent(exp)[source]¶
Conjugate exponent
exp / (exp - 1).- Parameters:
- exppositive float or inf
Exponent for which to calculate the conjugate. Must be at least 1.0.
- Returns:
- conjpositive float or inf
Conjugate exponent. For
exp=1, returnfloat('inf'), forexp=float('inf')return 1. In all other cases, returnexp / (exp - 1).