annotate scripts/control/obsolete/unpacksys.m @ 7846:d7737a4268b7

Fix typos in property names (edgealpha/facealpha). * * * Adpat OpenGL renderer to type change of edgealpha/facealpha properties.
author Michael Goffioul <michael.goffioul@gmail.com>
date Wed, 27 Feb 2008 11:28:22 +0100
parents ff0b965b65bc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7017
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
1 ## Copyright (C) 1996, 2000, 2005, 2007
a1dbe9d80eee [project @ 2007-10-12 21:27:11 by jwe]
jwe
parents: 7016
diff changeset
2 ## Auburn University. All rights reserved.
3421
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
3 ##
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3421
diff changeset
4 ## This file is part of Octave.
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3421
diff changeset
5 ##
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3421
diff changeset
6 ## Octave is free software; you can redistribute it and/or modify it
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
7 ## under the terms of the GNU General Public License as published by
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
8 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
9 ## your option) any later version.
3421
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
10 ##
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
11 ## Octave is distributed in the hope that it will be useful, but
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
14 ## General Public License for more details.
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3421
diff changeset
15 ##
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3421
diff changeset
16 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
17 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 5307
diff changeset
18 ## <http://www.gnu.org/licenses/>.
3421
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
19
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
20 ## [a,b,c,d] = unpacksys(sys)
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
21 ## Obsolete. Use sys2ss instead.
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
22
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
23 ## Author: David Clem
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
24 ## Created: August 19, 1994
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
25
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
26 function [a, b, c, d] = unpacksys (syst)
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
27
7134
ff0b965b65bc [project @ 2007-11-08 16:36:06 by jwe]
jwe
parents: 7017
diff changeset
28 warning ("unpacksys obsolete; calling sys2ss");
ff0b965b65bc [project @ 2007-11-08 16:36:06 by jwe]
jwe
parents: 7017
diff changeset
29 [a, b, c, d] = sys2ss (syst);
3421
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
30
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
31 endfunction
251c444248bf [project @ 2000-01-13 06:55:12 by jwe]
jwe
parents:
diff changeset
32