uncertain.m
来自「matlab波形优化算法经常要用到的matlab toolbox工具箱:yalm」· M 代码 · 共 24 行
M
24 行
function x = uncertain(x)
%UNCERTAIN Declares a variable as uncertain
%
% F = UNCERTAIN(x) is used to describe the set of uncertain variables
% in an uncertain program, as an alternative to using the 4th input in
% SOLVEROBUST.
%
% If an uncertain multi-parametric problem is solved, UNCERTAIN has to be
% used to declare the set of uncertain variables (since the fourt
% argument in solvemp is devoted to the paramtric variable)
%
% INPUT
% x : SDPVAR object
%
% OUTPUT
% F : SET object
%
% See also SOLVEROBUST, ROBUSTIFY
% Author Johan L鰂berg
% $Id: uncertain.m,v 1.3 2006/08/18 15:01:04 joloef Exp $
x.typeflag = 15;
x = lmi(x);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?