7 lines
212 B
Mathematica
7 lines
212 B
Mathematica
|
|
function LU = extract_bounds_from_min_operator(LU,extstruct,extvariables,i);
|
||
|
|
arg = extstruct(i).arg{1};
|
||
|
|
epi = getvariables(extstruct(i).var);
|
||
|
|
[M,m] = derivebounds(arg,LU);
|
||
|
|
LU(epi,1) = min(m);
|
||
|
|
LU(epi,2) = min(M);
|