Mercurial > hg > octave-nkf
annotate scripts/plot/title.m @ 9665:1dba57e9d08d
use blas_trans_type for xgemm
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Sat, 26 Sep 2009 10:41:07 +0200 |
parents | eb63fbe60fab |
children | be55736a0783 |
rev | line source |
---|---|
7017 | 1 ## Copyright (C) 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2003, 2004, |
8920 | 2 ## 2005, 2006, 2007, 2009 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}) |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
7271
diff
changeset
|
22 ## @deftypefnx {Function File} {} title (@var{title}, @var{p1}, @var{v1}, @dots{}) |
6257 | 23 ## Create a title object and return a handle to it. |
3368 | 24 ## @end deftypefn |
4 | 25 |
2314 | 26 ## Author: jwe |
27 | |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
7271
diff
changeset
|
28 function h = title (s, varargin) |
6257 | 29 |
6412 | 30 if (rem (nargin, 2) == 1) |
6257 | 31 if (nargout > 0) |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
7271
diff
changeset
|
32 h = __axis_label__ ("title", s, varargin{:}); |
6412 | 33 else |
8554
8cd2277569c0
title.m: set horizontalalignment to center
John W. Eaton <jwe@octave.org>
parents:
7271
diff
changeset
|
34 __axis_label__ ("title", s, varargin{:}); |
6257 | 35 endif |
36 else | |
6046 | 37 print_usage (); |
4 | 38 endif |
39 | |
40 endfunction |