islinear.m
来自「求解线性矩阵不等式简单方便--与LMI工具箱相比」· M 代码 · 共 23 行
M
23 行
function sys=islinear(x)
%ISLINEAR Check if variable is linear
%
% p = islinear(X)
%
% X : SDPVAR object
% p : boolean 0/1
% Author Johan L鰂berg
% $Id: islinear.m,v 1.1 2006/08/10 18:00:20 joloef Exp $
try
sys = is(x,'linear');
catch
disp('I have messed up something internally in YALMIP. Sorry...')
disp('Type yalmip(''clear'') and re-define the problem.');
disp(' ')
disp('This problem typically occurs if you have SDPVAR variables in');
disp('work-space, and call a function where you are using ')
disp('the command yalmip(''clear''). When control is returned to');
disp('the work-space, things are messed up...');
error('Internal problems in YALMIP');
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?