Skip to main content

Table 2 Pseudo code of MIS-based LPS procedure

From: Multi-prediction particle filter for efficient parallelized implementation

1: /* MIS-based LPS Procedure */

2: Input:

3:    previous selected particle: { x t ( i ) , w t ( i ) }

4:    new generated particle: { x temp ( j ) , w temp ( j ) }

5: Selection:

6:    if ( w t e m p ( j ) > w t ( i ) )

7:       x t ( i ) = x temp ( j )

8:       w t ( i ) = w temp ( j )

9:    end if