You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all, big thanks to the authors for the work and even more so for making this great resource available open-access, much appreciated!
Potential typos in algorithm 8
In algorithm 8, it states
on lines 4 AND 5 «Loop over assimilation windows». Shouldn't the latter be something along the lines of «Loop over ESMDA steps»?
on line 19 Z=X_N. Is that right or should it be Z=X_K (as in algorithm 7)?
Inconsistency
In algorithms 1-4, for-loops are defined using a colon, for k = 1 : N do. In algorithms 7-11 and 14, however, for-loops are defined using a comma, for k = 1, N do (algorithms 5,6,12,13 have no for-loops).
for l = 1,... do
In algorithms 7 and 8, there is the line for l = 1,... do. Is that on purpose?
The text was updated successfully, but these errors were encountered:
Hi Geir,
First of all, big thanks to the authors for the work and even more so for making this great resource available open-access, much appreciated!
Potential typos in algorithm 8
In algorithm 8, it states
Z=X_N
. Is that right or should it beZ=X_K
(as in algorithm 7)?Inconsistency
In algorithms 1-4, for-loops are defined using a colon,
for k = 1 : N do
. In algorithms 7-11 and 14, however, for-loops are defined using a comma,for k = 1, N do
(algorithms 5,6,12,13 have no for-loops).for l = 1,... do
In algorithms 7 and 8, there is the line
for l = 1,... do
. Is that on purpose?The text was updated successfully, but these errors were encountered: