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

📄 eval_update.m

📁 基于微分的多目标优化问题
💻 M
字号:
function [idealpoint, subproblems]= eval_update(idealpoint, subproblems, inds)%EvaluationUpdate Summary of this function goes here%   Detailed explanation goes hereobjs = [inds.objective];weights = [subproblems.weight];idealpoint = min(idealpoint, min(objs,[],2));for i=1:length(inds)    subobjs = subobjective(weights, objs(:,i), idealpoint, 'ws');    %update the values.    C = subobjs<[subproblems.optimal];    if any(C)        ncell = num2cell(subobjs(C));        [subproblems(C).optimal] = ncell{:};            [subproblems(C).optpoint] = deal(inds(i));    endendend

⌨️ 快捷键说明

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