代码搜索:optimization
找到约 10,000 项符合「optimization」的源代码
代码结果 10,000
www.eeworm.com/read/288527/8625555
bbl sga-c.bbl
\begin{thebibliography}{}
\bibitem[Booker, 1982]{Booker:82}
Booker, L.~B. (1982).
\newblock Intelligent behavior as an adaptation to the task environment
(Doctoral dissertation, Technical Repo
www.eeworm.com/read/287779/8669560
txt 蚁群算法简介.txt
蚁群算法(ant colony <mark>optimization</mark>, ACO),又称蚂蚁算法,是一种用来在图中寻找优化路径的机率型技术。它由Marco Dorigo于1992年在他的博士论文中引入,其灵感来源于蚂蚁在寻找食物过程中发现路径的行为。
为什么小小的蚂蚁能够找到食物?他们具有智能么?设想,如果我们要为蚂蚁设计一个人工智能的程序,那么这个程序要多么复杂呢?首先,你要让蚂蚁能够避开障碍物 ...
www.eeworm.com/read/431176/8705958
m rastrigin.m
% Rastrigin.m
% Rastrigin function
%
% used to test optimization/global minimization problems
%
% f(x) = sum([x.^2-10*cos(2*pi*x) + 10], 2);
%
% x = N element row vector containing [x0, x1, .