资源简介

剑桥大学 杨新社教授的蝙蝠算法的 源码。

资源截图

代码片段和文件信息

% ======================================================== % 
% Files of the Matlab programs included in the book:       %
% Xin-She Yang Nature-Inspired metaheuristic Algorithms  %
% Second Edition Luniver Press (2010).   www.luniver.com %
% ======================================================== %    

% -------------------------------------------------------- %
% Bat-inspired algorithm for continuous optimization (demo)%
% Programmed by Xin-She Yang @Cambridge University 2010    %
% -------------------------------------------------------- %
% Usage: bat_algorithm([20 0.25 0.5]);                     %

function [bestfminN_iter]=bat_algorithm(para)
% Display help
 help bat_algorithm.m

% Default parameters
if nargin<1  para=[10 0.25 0.5];  end
n=para(1);      % P

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2946  2012-06-05 18:04  bat_algorithm.m

----------- ---------  ---------- -----  ----

                 2946                    1


评论

共有 条评论