7017
|
1 ## Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2003, 2004, |
|
2 ## 2005, 2006, 2007 John W. Eaton |
2313
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
|
7 ## under the terms of the GNU General Public License as published by |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
2313
|
10 ## |
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
245
|
19 |
3368
|
20 ## -*- texinfo -*- |
6257
|
21 ## @deftypefn {Function File} {} title (@var{title}) |
|
22 ## Create a title object and return a handle to it. |
3368
|
23 ## @end deftypefn |
4
|
24 |
7271
|
25 ## PKG_ADD: mark_as_command title |
|
26 |
2314
|
27 ## Author: jwe |
|
28 |
7162
|
29 function h = title (varargin) |
6257
|
30 |
6412
|
31 if (rem (nargin, 2) == 1) |
6257
|
32 if (nargout > 0) |
6412
|
33 h = __axis_label__ ("title", varargin{:}); |
|
34 else |
|
35 __axis_label__ ("title", varargin{:}); |
6257
|
36 endif |
|
37 else |
6046
|
38 print_usage (); |
4
|
39 endif |
|
40 |
|
41 endfunction |