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

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

Added original make3d

File size: 580 bytes
Line 
1function x = integer(x)
2%PARAMETRIC Defines a variable as parametric
3%
4%   F = PARAMETRIC(x) is used to describe the set of parametric variables
5%   in a multi-parametric program, as an alternative to using the 4th input
6%   in SOLVEMP
7%
8%
9%   INPUT
10%    x : SDPVAR object
11%
12%   OUTPUT
13%    F : SET object
14%
15%   EXAMPLE
16%    F = set(prametric(x));           % Full verbose notation
17%    F = parametric(x);               % Short notation
18%
19%   See also SOLVEMP, SDPVAR
20
21% Author Johan Löfberg
22% $Id: parametric.m,v 1.1 2006/08/10 18:00:21 joloef Exp $
23
24x.typeflag = 13;
25x = lmi(x);
Note: See TracBrowser for help on using the repository browser.