⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ellipsoid.m

📁 求解线性矩阵不等式简单方便--与LMI工具箱相比
💻 M
字号:
function p = ellipsoid(X)
% polytope  Converts set object to ELLIPSOID object        
%
% E     = ellipsoid(F)
% [P,x] = ellipsoid(F)
%
% P : ELLIPSOID object (Requires the Ellipsoidal Toolbox)
% x : sdpvar object defining the variables in the polytope P.H*x<P.K

% Author Johan L鰂berg
% $Id: ellipsoid.m,v 1.1 2005/10/02 19:12:14 joloef Exp $


if all(is(X,'element-wise'))% & all(is(X,'linear'))
    f = [];
    for i = 1:length(X)
        if  X.clauses{i}.type==2
            fi =  X.clauses{i}.data;
            [Q,c,f,x,info] = quaddecomp(fi);       
            p=ellipsoid(c,-Q);
        end
    end
    
else
    error('ELLIPSOID can only be applied to SET objects with quadratic inequalities.')
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -