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

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

Added original make3d

File size: 581 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 parametric 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
10%
11%   INPUT
12%    x : SDPVAR object
13%
14%   OUTPUT
15%    F : SET object
16%
17%   See also SOLVEROBUST, ROBUSTIFY
18
19% Author Johan Löfberg
20% $Id: uncertain.m,v 1.1 2006/08/10 18:00:23 joloef Exp $
21
22x.typeflag = 15;
23x = lmi(x);
Note: See TracBrowser for help on using the repository browser.