public final class MoreMathKt
final Double
logAddExp(Double $self, Double b)
log(exp(a) + exp(b)) = a + log(1 + exp(b - a))
logSumExp(Sequence<Double> $self)
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
final Double logAddExp(Double $self, Double b)
Evaluates log(exp(a) + exp(b)) using the following trick
assuming a >= b.
final Double logSumExp(Sequence<Double> $self)