source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/opt/yalmip/@sdpvar/uncertain.m @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 659 bytes
Line 
1function x = uncertain(x)
2%UNCERTAIN Declares a variable as uncertain
3%
4%   F = UNCERTAIN(x) is used to describe the set of uncertain variables
5%   in an uncertain program, as an alternative to using the 4th input in
6%   SOLVEROBUST.
7%
8%   If an uncertain multi-parametric problem is solved, UNCERTAIN has to be
9%   used to declare the set of uncertain variables (since the fourt
10%   argument in solvemp is devoted to the paramtric variable)
11%
12%   INPUT
13%    x : SDPVAR object
14%
15%   OUTPUT
16%    F : SET object
17%
18%   See also SOLVEROBUST, ROBUSTIFY
19
20% Author Johan Löfberg
21% $Id: uncertain.m,v 1.3 2006/08/18 15:01:04 joloef Exp $
22
23x.typeflag = 15;
24x = lmi(x);
Note: See TracBrowser for help on using the repository browser.