Issue #94 Incorrect index in pseudocode
We are looping over j, but I used i as the index.
This commit is contained in:
parent
69cf5aebce
commit
a15fca8d9a
@ -21931,7 +21931,7 @@
|
||||
"```python\n",
|
||||
"for j in N:\n",
|
||||
" x0[j] = sum_over_i(w[i,j] * x[i])\n",
|
||||
" P0[j] = sum_over_i(w[i, j] * (P[i] + np.outer(x[i] - x0[i]))) \n",
|
||||
" P0[j] = sum_over_i(w[i, j] * (P[i] + np.outer(x[i] - x0[j]))) \n",
|
||||
"```\n",
|
||||
"\n",
|
||||
"Don't let the notation confuse what is a simple idea: incorporate estimates from the probable filters into the estimates of the improbable filters, ensuring all have a good estimate."
|
||||
|
Loading…
Reference in New Issue
Block a user