📄 eval_update.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 + -