Dynamic-Calibration/utils/YALMIP-master/modules/global/update_eval_bounds.m

8 lines
196 B
Mathematica
Raw Permalink Normal View History

2019-12-18 11:25:45 +00:00
function p = update_eval_bounds(p);
if ~isempty(p.evalVariables)
for i = 1:length(p.evalMap)
p = update_one_eval_bound(p,i);
p = update_one_inverseeval_bound(p,i);
end
end