Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

could anyone hep me to clear my doubt

2 views (last 30 days)
jaah navi
jaah navi on 3 Apr 2019
Closed: MATLAB Answer Bot on 20 Aug 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.

Answers (1)

Rik
Rik on 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 Comment
Rik
Rik on 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.

This question is closed.

Tags

Community Treasure Hunt

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

Start Hunting!