Mercurial > hg > octave-lyh
annotate scripts/plot/private/__axis_label__.m @ 17405:0bf2fc8562c9
doc: Update documentation for file and directory functions.
* libinterp/corefcn/dirfns.cc(Fpwd, Freaddir, Fmkdir, Frmdir, Freadlink, Ffnmatch): Redo docstring.
* libinterp/corefcn/dirfns.cc(Fcd): Redo docstring. Return previous working
directory if nargout > 0.
* libinterp/corefcn/dirfns.cc(Flink, Fsymlink, Frename): Redo docstring.
Re-order return values so that highest numbered value is assigned first to
avoid re-sizing octave_value_list each time.
* libinterp/corefcn/syscalls.cc(Flstat, Fmkfifo, FS_ISREG, FS_ISDIR, FS_ISCHR,
FS_ISBLK, FS_ISFIFO, FS_ISLNK, FS_ISSOCK): Redo docstring.
* scripts/general/isdir.m: Add more xrefs to @seealso.
* scripts/miscellaneous/copyfile.m: Add more xrefs to @seealso.
* scripts/miscellaneous/dir.m: Redo docstring.
* scripts/miscellaneous/ls.m: Add more xrefs to @seealso.m.
* scripts/miscellaneous/movefile.m: Add more xrefs to @seealso.
author | Rik <rik@octave.org> |
---|---|
date | Mon, 09 Sep 2013 14:30:31 -0700 |
parents | 1c89599167a6 |
children |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13800
diff
changeset
|
1 ## Copyright (C) 1996-2012 John W. Eaton |
3479 | 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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
3479 | 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 | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
3479 | 18 |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8557
diff
changeset
|
19 ## -*- texinfo -*- |
13800
5acb5c25e4ae
allow axes handle to be passed to title function
John W. Eaton <jwe@octave.org>
parents:
12965
diff
changeset
|
20 ## @deftypefn {Function File} {} __axis_label__ (@var{caller}, @var{h}, @var{txt}, @dots{}) |
6895 | 21 ## Undocumented internal function. |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8557
diff
changeset
|
22 ## @end deftypefn |
3479 | 23 |
24 ## Author: jwe | |
25 | |
17053
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
26 function retval = __axis_label__ (hax, caller, txt, varargin) |
3479 | 27 |
17053
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
28 h = get (hax, caller); |
8557
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
29 |
17053
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
30 set (h, "fontangle", get (hax, "fontangle"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
31 "fontname", get (hax, "fontname"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
32 "fontunits", get (hax, "fontunits"), # must precede fontsize |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
33 "fontsize", get (hax, "fontsize"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
34 "fontweight", get (hax, "fontweight"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
35 "string", txt, |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
36 varargin{:}); |
11589
b0084095098e
missing semicolons in script files
John W. Eaton <jwe@octave.org>
parents:
11587
diff
changeset
|
37 |
12965
22bc9ec80c2c
allow multi-line string property for text objects using cell arrays or char matrices
Ben Abbott <bpabbott@mac.com>
parents:
12319
diff
changeset
|
38 if (nargout > 0) |
22bc9ec80c2c
allow multi-line string property for text objects using cell arrays or char matrices
Ben Abbott <bpabbott@mac.com>
parents:
12319
diff
changeset
|
39 retval = h; |
4529 | 40 endif |
41 | |
3479 | 42 endfunction |
17346
1c89599167a6
maint: End m-files with 1 blank line.
Rik <rik@octave.org>
parents:
17053
diff
changeset
|
43 |