|
Randy Poe wrote:
> On Mar 6, 11:16 am, ho <hippo...@hotmail.com> wrote:
>> Dear guys
>>
>> I am now currently working on the ant colony algorithm.
>> would you give me some matlab code of ant colony codes please ?
>>
>> my email address is hippo...@hotmail.com
>
> My ant algorithm:
>
> plot(rand(1,100),rand(1,100),'*');
>
> It seems my ants died. They just sit there.
Great idea. My ants are alive:
for t=0:1:50
plot(rand(1,100),rand(1,100),'*');
pause(0.4)
end
> Seriously, what is the "ant colony algorithm"? Could it be
> that this was a term introduced by your professor that has
> no meaning to those of us not taking your course?
My ants have seen the tv serie: "STAR TREK". They can teleport
instantaneous from one location to another. All the have to say is:
"Beam me up, Scotty" and suddenly they're in another location.
Best regards
Martin Jørgensen
--
---------------------------------------------------------------------------
Home of Martin Jørgensen - http://www.martinjoergensen.dk
|