Skip to main content
. 2024 Jun 27;24(13):4174. doi: 10.3390/s24134174
Algorithm 4. Control algorithm for the dt variables.
Procedure controlling dt variables.
    while (true)
     for n = 0; n ≤ 2; n++
       if dt(n) < lower_limit or dt(n) > upper_limit then
           w_dt(n) = 1
       else
           w_dt(n) = calculated_error_value
       end if
     end for
    end while