Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

could anyone hep me to clear my doubt

2 visualizzazioni (ultimi 30 giorni)
jaah navi
jaah navi il 3 Apr 2019
Chiuso: MATLAB Answer Bot il 20 Ago 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.

Risposte (1)

Rik
Rik il 3 Apr 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 Commento
Rik
Rik il 9 Apr 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.

Questa domanda è chiusa.

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by