Algorithm: Initialize all agents; while (not maximum iterations nor minimum error ) { foreach(agent in agents) { Calculate function value at agent position; If (value < best_value_in_history) best_value_in_history= value; } current_best_value= ...
5
votes
1answer
801 views
Implementation of Particle Swarm Optimization Algorithm in R
I'm checking a simple moving average crossing strategy in R. Instead of running a huge simulation over the 2 dimenional parameter space (length of short term moving average, length of long term moving ...
3
votes
2answers
359 views
Quantum PSO and Charged PSO (PSO = Particle Swarm Optimizer)
I need to implement PSO's (namely charged and quantum PSO's).
My questions are these:
What Velocity Update strategy do each PSO's use (Synchronous or Asynchronous particle update)
What social ...
2
votes
2answers
199 views
Simple 1-D particle swarm optimization algorithm for a noisy environment
I'm experimenting with particle swarm optimisation and am trying to determine the best approach for the following simple scenario:
Optimizing a 1-dimensional function (i.e. particles are moving ...
1
vote
1answer
115 views
Particle Swarm Optimization
I'm using Particle Swarm Optimization(PSO) in java. I am having little knowledge about what we do. Since, I am applying for multiple sequence alignment in bioinformatics.
We need to find position ...
1
vote
0answers
60 views
Particle Swam Optimization (PSO) learning and adapting
I have recently implemented a basic algorithm of PSO which when provided with a function of 2 variables(x,y) would return the minima of the function within a range.
Now the issue is - the function ...
1
vote
1answer
214 views
PSO ring topology - how does it work?
I know that the topology of the global optimum is searched for each particle and global for the entire swarm.
The ring, I know that there are a few neighborhoods and searched a lbest, a local ...