Hi guys
I want to calculate equations like log(a * exp(b1) + c * exp(b2))
I can write: logsumexp([log(a) + b1, log(c) + b2]).
- I want to know if this method is stable.
And I know that in scipy, the logsumexp function has parameter โbโ to represent [a,c], like the following example:
2)Whether this LogSumExp.jl has similar arguments is like that logsumexp in Scipy