Skip to main content
. 2021 Oct 7;21(19):6654. doi: 10.3390/s21196654
Algorithm 1 Pseudo-code for chaotic-based population initialization
  • Step 1: Generate standard random population P of N solutions with expression: Xi=LB+(UBLB)·rand(0,1),i=1,...N, where rand(0,1) is pseudo-random number drawn from the interval [0,1].

  • Step 2: Generate chaotic population Pc of N individuals by mapping solutions from P to chaotic sequences using expressions (20) and (21).

  • Step 3: Calculate fitness of all solutions from P and Pc.

  • Step 4: Sort all solutions from PPc according to fitness.

  • Step 5: Select N best individuals from sorted set PPc as initial population.