Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

could anyone hep me to clear my doubt

2 visualizaciones (últimos 30 días)
jaah navi
jaah navi el 3 de Abr. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
In Particle swarm optimization for minimization, the global best is initialized to inf ;
for maximization the global best is initialized to -inf;
But in general inf is a largest value and how it can be used for minimization
and -inf is a smallest value and how it can be used for maximization.
Could anyone please clarify it.

Respuestas (1)

Rik
Rik el 3 de Abr. de 2019
Because inf is the extreme, you can use it to find the next value in your data. As an example, the code below finds the maximum value in a vector:
max_val=-inf;
data=rand(1,100);
for n=1:numel(data)
if data(n)>max_val%is bigger than current max?
max_val=data(n);%store new max
end
end
Now the -inf will be replaced by the actual larger value once it finds one. The only case where it will stay -inf is when all values in the data are -inf, in which case it is indeed the maximum value.
Minimization works the same in the reverse case.
  1 comentario
Rik
Rik el 9 de Abr. de 2019
Did this suggestion solve your problem? If so, please consider marking it as accepted answer. It will make it easier for other people with the same question to find an answer. If this didn't solve your question, please comment with what problems you are still having.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by