2847
|
1 ## Copyright (C) 1996, 1997 John W. Eaton |
2313
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
245
|
19 |
3449
|
20 ## -*- texinfo -*- |
6459
|
21 ## @deftypefn {Function File} {} __plt2vv__ (@var{h}, @var{x}, @var{y}, @var{options}, @var{properties}) |
3449
|
22 ## @end deftypefn |
3402
|
23 |
2314
|
24 ## Author: jwe |
|
25 |
6459
|
26 function retval = __plt2vv__ (h, x, y, options, properties) |
4
|
27 |
6459
|
28 if (nargin < 3 || nargin > 5) |
6046
|
29 print_usage (); |
6146
|
30 endif |
|
31 |
6264
|
32 if (nargin < 4 || isempty (options)) |
|
33 options = __default_plot_options__ (); |
6146
|
34 endif |
|
35 |
6459
|
36 if (nargin < 5) |
|
37 properties = {}; |
|
38 endif |
|
39 |
6264
|
40 if (numel (options) > 1) |
|
41 options = options(1); |
4
|
42 endif |
|
43 |
|
44 [x_nr, x_nc] = size (x); |
|
45 [y_nr, y_nc] = size (y); |
|
46 |
|
47 if (x_nr == 1) |
|
48 x = x'; |
|
49 tmp = x_nr; |
|
50 x_nr = x_nc; |
|
51 x_nc = tmp; |
|
52 endif |
|
53 |
|
54 if (y_nr == 1) |
|
55 y = y'; |
|
56 tmp = y_nr; |
|
57 y_nr = y_nc; |
|
58 y_nc = tmp; |
|
59 endif |
|
60 |
6257
|
61 if (x_nr == y_nr) |
6264
|
62 key = options.key; |
6257
|
63 if (! isempty (key)) |
|
64 set (h, "key", "on"); |
|
65 endif |
6264
|
66 color = options.color; |
|
67 if (isempty (color)) |
|
68 color = __next_line_color__ (); |
|
69 endif |
6302
|
70 retval = line (x, y, "keylabel", key, "color", color, |
|
71 "linestyle", options.linestyle, |
6459
|
72 "marker", options.marker, properties{:}); |
6257
|
73 else |
2315
|
74 error ("__plt2vv__: vector lengths must match"); |
4
|
75 endif |
|
76 |
|
77 endfunction |