?? evaluate.m
字號:
function [v, x] = evaluate( prob, x )%EVALUATE function evaluate an individual structure of a vector point with%the given multiobjective problem.% Detailed explanation goes here% prob: is the multiobjective problem.% x: is a vector point, or a individual structure.% v: is the result objectives evaluated by the mop.% x: if x is a individual structure, then x's objective field is modified% with the evaluated value and pass back.% TODO, need to refine it to operate on a vector of points. if isstruct(x) v = prob.func(x.parameter); x.objective=v; else v = prob.func(x); end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -