how to gave the input for the following functions?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
function [x, fval, exitflag, output] = pso(objfunc, nvars, options)
In that function specified the objfunc means "real-valued function of a single, real-valued vector argument"
please call the function with example would been easy to understand
0 comentarios
Respuestas (1)
Walter Roberson
el 2 de Jul. de 2015
Example:
@(x) (x(1)-20).^2 + cos(x(2))
3 comentarios
Walter Roberson
el 2 de Jul. de 2015
You have not indicated what is to be optimized. What parameter is being looked for?
Ver también
Categorías
Más información sobre Particle Swarm en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!