⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 set.m

📁 Passino所提出的细菌优化算法matlab源程序
💻 M
字号:
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

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -