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
The mem_prv_observ argument takes a boolean value, but it is unclear to me why we would ever need this value to be TRUE. Should it not always be TRUE when using the trajectory method of prediction?
Additionally, there is an error in the code on this line, which reads:
if(mem == FALSE){
FALSE is equivalent to 0 in R, but not C, so I will change this to 0. and push a new version.
The text was updated successfully, but these errors were encountered:
The
mem_prv_observ
argument takes a boolean value, but it is unclear to me why we would ever need this value to beTRUE
. Should it not always beTRUE
when using the trajectory method of prediction?Additionally, there is an error in the code on this line, which reads:
FALSE
is equivalent to 0 in R, but not C, so I will change this to 0. and push a new version.The text was updated successfully, but these errors were encountered: