uncertain.m
来自「matlab波形优化算法经常要用到的matlab toolbox工具箱:yalm」· M 代码 · 共 23 行
M
23 行
function x = uncertain(x)
%UNCERTAIN Declares a variable as uncertain
%
% F = UNCERTAIN(x) is used to describe the set of parametric 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
%
% INPUT
% x : SDPVAR object
%
% OUTPUT
% F : SET object
%
% See also SOLVEROBUST, ROBUSTIFY
% Author Johan L鰂berg
% $Id: uncertain.m,v 1.1 2006/08/10 18:00:23 joloef Exp $
x.typeflag = 15;
x = lmi(x);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?