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} {} __plt2vm__ (@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 = __plt2vm__ (h, x, y, options, properties) |
6146
|
27 |
6459
|
28 if (nargin < 3 || nargin > 5) |
6146
|
29 print_usage (); |
|
30 endif |
4
|
31 |
6264
|
32 if (nargin < 4 || isempty (options)) |
|
33 options = __default_plot_options__ (); |
4
|
34 endif |
|
35 |
6459
|
36 if (nargin < 5) |
|
37 properties = {}; |
|
38 endif |
|
39 |
4
|
40 [x_nr, x_nc] = size (x); |
|
41 [y_nr, y_nc] = size (y); |
|
42 |
|
43 if (x_nr == 1) |
|
44 x = x'; |
|
45 tmp = x_nr; |
|
46 x_nr = x_nc; |
|
47 x_nc = tmp; |
|
48 endif |
|
49 |
|
50 if (x_nr == y_nr) |
|
51 1; |
|
52 elseif (x_nr == y_nc) |
|
53 y = y'; |
|
54 tmp = y_nr; |
|
55 y_nr = y_nc; |
|
56 y_nc = tmp; |
|
57 else |
2315
|
58 error ("__plt2vm__: matrix dimensions must match"); |
4
|
59 endif |
|
60 |
|
61 if (y_nc > 0) |
6264
|
62 if (numel (options) == 1) |
|
63 options = repmat (options(:), y_nc, 1); |
6146
|
64 endif |
6302
|
65 retval = zeros (y_nc, 1); |
5115
|
66 for i = 1:y_nc |
6265
|
67 tkey = options(i).key; |
6257
|
68 if (! isempty (tkey)) |
|
69 set (h, "key", "on"); |
|
70 endif |
6264
|
71 color = options(i).color; |
|
72 if (isempty (color)) |
|
73 color = __next_line_color__ (); |
|
74 endif |
6302
|
75 retval(i) = line (x, y(:,i), "keylabel", tkey, "color", color, |
|
76 "linestyle", options(i).linestyle, |
6459
|
77 "marker", options(i).marker, properties{:}); |
4
|
78 endfor |
|
79 else |
2315
|
80 error ("__plt2vm__: arguments must be a matrices"); |
4
|
81 endif |
|
82 |
|
83 endfunction |