Particle swarm optimization: Difference between revisions

m (→‎{{header|REXX}}: added/changed whitespace and comments, simplified a function, added a better (computation) cessation algorithm.)
Line 116:
GlobalBestValue: _1.8013</lang>
 
=={{header|JavascriptJavaScript}}==
 
Translation of [[Particle_Swarm_Optimization#J|J]].
 
<lang JavascriptJavaScript>function pso_init(y) {
var nDims= y.min.length;
var pos=[], vel=[], bpos=[], bval=[];
124

edits