| Algorithm 1 Estimation of RBFN centers via IF |
Input
2: 3: % calculates the information potential. 4: % calculates the information force. 5: for do % Raffle the candidates 6: ; 7: if then 8: Eliminate ; 9: end if 10: end for 11: 12: 13: while () and (not all are eliminated or converged) do 14: % Eliminate points to close each other 15: for i and do 16: if then 17: Eliminate 18: end if 19: end for 20: 21: for do ▹ Update the center candidate. 22: 23: if then 24: converge! 25: end if 26: end for 27: 28: end while 29: that converge. 30: return 31: 32: end procedure |