I have a quick question.
Should the equation above be
sum(k=0 to 10) [ O(k) log ...]
rather than
sum(k=0 to 10) [ log (O(k) ...)]
I thought the O(k) comes from multiplying the convolved distribution O(k) times (as each cell would be an independent event like this). So then when you take the log it becomes a sum. The code indeed is consistent with sum(k=0 to 10) [ O(k) log ...], if I understand correctly:
for k in range(len(n)):
ll+=n[k]*np.log(zibpdf[k])
LL[i,m]=ll
Or am I not understanding this correctly?
Thanks!