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 coefficients of $z_t$ & $\epsilon$ in the result of $z_{t_{k-1}}$ correspond to lambda_t, eta_t in the code snippet, where t_c refers to $t$, t_e refers to $t_{k-1}$, t_s refers to $t_k$, eta_s refers to $\eta_k$, and so on
@HanshuYAN Thanks for your open-source code.
Could you tell me how to derive Equation 6 in this paper?
In the following code snippet, why is lambda_t and eta_t equal to the right equation?
lambda_t = ( lambda_s * (t_e - t_s) ) / ( lambda_s *(t_c - t_s) + (t_e - t_c) )
eta_t = ( eta_s * (t_e - t_c) ) / ( lambda_s *(t_c - t_s) + (t_e - t_c) )
The text was updated successfully, but these errors were encountered: