Info

此问题已关闭。 请重新打开它进行编辑或回答。

could anyone hep me to clear my doubt

1 次查看(过去 30 天)
jaah navi
jaah navi 2019-4-3
关闭: MATLAB Answer Bot 2021-8-20
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.

回答(1 个)

Rik
Rik 2019-4-3
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 个评论
Rik
Rik 2019-4-9
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.

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by