Passino所提出的细菌优化算法matlab源程序

源代码在线查看: set.m

软件大小: 14 K
上传用户: wuseyue
关键词: Passino matlab 优化算法 源程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				function f = set(f,varargin)
				% SET Set frogp properties to the specified values
				% and return the updated object
				property_argin = varargin;
				while length(property_argin) >= 2,
				    prop = property_argin{1};
				    val = property_argin{2};
				    property_argin = property_argin(3:end);
				    
				    switch prop
				    case 'ID'
				        f.ID = val;
				    case 'angle'
				        f.angle = val;
				    otherwise
				        error('Invalid property')
				    end
				end			

相关资源