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. |
933
|
19 |
3449
|
20 ## -*- texinfo -*- |
6264
|
21 ## @deftypefn {Function File} {} __plt2__ (@var{h}, @var{x1}, @var{x2}, @var{options}) |
3449
|
22 ## @end deftypefn |
3402
|
23 |
2314
|
24 ## Author: jwe |
|
25 |
6302
|
26 function retval = __plt2__ (h, x1, x2, options) |
933
|
27 |
6264
|
28 if (nargin < 3 || nargin > 4) |
6046
|
29 print_usage (); |
933
|
30 endif |
|
31 |
6264
|
32 if (nargin < 4 || isempty (options)) |
|
33 options = __default_plot_options__ (); |
933
|
34 endif |
|
35 |
6264
|
36 if (! isstruct (options)) |
|
37 error ("__plt1__: options must be a struct array"); |
933
|
38 endif |
|
39 |
|
40 if (any (any (imag (x1)))) |
|
41 x1 = real (x1); |
|
42 endif |
5115
|
43 |
933
|
44 if (any (any (imag (x2)))) |
|
45 x2 = real (x2); |
|
46 endif |
5115
|
47 |
6302
|
48 h_set = false; |
4030
|
49 if (isscalar (x1)) |
|
50 if (isscalar (x2)) |
6302
|
51 retval = __plt2ss__ (h, x1, x2, options); |
5115
|
52 else |
|
53 error ("__plt2__: invalid data for plotting"); |
933
|
54 endif |
4030
|
55 elseif (isvector (x1)) |
|
56 if (isvector (x2)) |
6302
|
57 retval = __plt2vv__ (h, x1, x2, options); |
4030
|
58 elseif (ismatrix (x2)) |
6302
|
59 retval = __plt2vm__ (h, x1, x2, options); |
5115
|
60 else |
|
61 error ("__plt2__: invalid data for plotting"); |
933
|
62 endif |
4030
|
63 elseif (ismatrix (x1)) |
|
64 if (isvector (x2)) |
6302
|
65 retval = __plt2mv__ (h, x1, x2, options); |
4030
|
66 elseif (ismatrix (x2)) |
6302
|
67 retval = __plt2mm__ (h, x1, x2, options); |
5115
|
68 else |
|
69 error ("__plt2__: invalid data for plotting"); |
933
|
70 endif |
5741
|
71 elseif (isempty (x1) && isempty (x2)) |
6257
|
72 ## FIXME -- should we do nothing, or should we create a line object |
|
73 ## with empty xdata and ydata properties? |
5115
|
74 else |
|
75 error ("__plt2__: invalid data for plotting"); |
933
|
76 endif |
|
77 |
|
78 endfunction |