Jump to content

Particle swarm optimization: Difference between revisions

m
→‎{{header|REXX}}: elided a testing setting.
m (→‎{{header|REXX}}: adjusted the alignment of the output columns.)
m (→‎{{header|REXX}}: elided a testing setting.)
Line 1,539:
<lang rexx>/*REXX program calculates Particle Swarm Optimization as it migrates through a solution.*/
numeric digits length( pi() ) - 1 /*use the number of decimal digs in pi.*/
numeric digits 44
parse arg x y d #part sDigs . /*obtain optional arguments from the CL*/
if x=='' | x=="," then x= -0.5 /*Not specified? Then use the default.*/
Cookies help us deliver our services. By using our services, you agree to our use of cookies.