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 -*- |
6459
|
21 ## @deftypefn {Function File} {} __plt1__ (@var{h}, @var{x1}, @var{options}, @var{properties}) |
3449
|
22 ## @end deftypefn |
3402
|
23 |
2314
|
24 ## Author: jwe |
|
25 |
6459
|
26 function retval = __plt1__ (h, x1, options, properties) |
933
|
27 |
6459
|
28 if (nargin < 2 || nargin > 4) |
6046
|
29 print_usage (); |
933
|
30 endif |
|
31 |
6264
|
32 if (nargin < 3 || isempty (options)) |
|
33 options = __default_plot_options__ (); |
933
|
34 endif |
|
35 |
6459
|
36 if (nargin < 4) |
|
37 properties = {}; |
|
38 endif |
|
39 |
6264
|
40 if (! isstruct (options)) |
|
41 error ("__plt1__: options must be a struct array"); |
933
|
42 endif |
|
43 |
|
44 [nr, nc] = size (x1); |
|
45 if (nr == 1) |
1169
|
46 x1 = x1.'; |
933
|
47 tmp = nr; |
|
48 nr = nc; |
|
49 nc = tmp; |
|
50 endif |
|
51 x1_i = imag (x1); |
|
52 if (any (any (x1_i))) |
|
53 x2 = x1_i; |
|
54 x1 = real (x1); |
|
55 else |
|
56 x2 = x1; |
|
57 x1 = (1:nr)'; |
|
58 endif |
|
59 |
6459
|
60 retval = __plt2__ (h, x1, x2, options, properties); |
933
|
61 |
|
62 endfunction |