8 lines
148 B
Mathematica
8 lines
148 B
Mathematica
|
|
function LU = getbounds(F,avoidequalitybounds)
|
||
|
|
|
||
|
|
if nargin == 1
|
||
|
|
LU = getbounds(lmi(F));
|
||
|
|
else
|
||
|
|
LU = getbounds(lmi(F),avoidequalitybounds);
|
||
|
|
end
|