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

📄 eval.m

📁 HERE IS A GOOD PSO TOOL BOX
💻 M
字号:
function r = eval(obj, vars)% GPCONSTRAINT/EVAL  Implements EVAL command for GP constraints.%% Returns either a true (logical 1) or a false (logical 0) if all% GP variables are specified or a reduced GP constraint.%sz = size(vars);if( ~isa(vars,'cell') || sz(2) ~= 2 )  error('Second argument should be a cell array with 2 rows');end% check that all the gp variables are positive (implicit GP constraint)for k = 1:size(vars,1)  var_values = vars{k,2};  if any(var_values <= 0)    error('GP variables must have positive value.');  endend% evaluate different flavors of gpconstraintif( strcmp(obj.type,'<=') )  r = (eval(obj.lhs,vars)) <= (eval(obj.rhs,vars));elseif( strcmp(obj.type,'==') )  r = (eval(obj.lhs,vars)) == (eval(obj.rhs,vars));end

⌨️ 快捷键说明

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