11 lines
164 B
Mathematica
11 lines
164 B
Mathematica
|
|
function F = replace(F,x,w,expand)
|
||
|
|
% Internal class for constraint list
|
||
|
|
|
||
|
|
F = lmi(F);
|
||
|
|
if nargin ==3
|
||
|
|
F = replace(F,x,w);
|
||
|
|
else
|
||
|
|
F = replace(F,x,w,expand);
|
||
|
|
end
|
||
|
|
|