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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
2 ##
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
3 ## This file is part of Octave.
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
4 ##
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
8 ## your option) any later version.
3479
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
9 ##
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
13 ## General Public License for more details.
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
14 ##
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6895
diff changeset
17 ## <http://www.gnu.org/licenses/>.
3479
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
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
76e3d985ae56 [project @ 2007-09-13 18:22:38 by jwe]
jwe
parents: 6737
diff changeset
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
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
23
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
24 ## Author: jwe
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
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
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
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
78954aeaf321 [project @ 2003-10-04 19:35:36 by jwe]
jwe
parents: 3497
diff changeset
40 endif
78954aeaf321 [project @ 2003-10-04 19:35:36 by jwe]
jwe
parents: 3497
diff changeset
41
3479
19e0f69da41e [project @ 2000-01-26 04:08:07 by jwe]
jwe
parents:
diff changeset
42 endfunction
17346
1c89599167a6 maint: End m-files with 1 blank line.
Rik <rik@octave.org>
parents: 17053
diff changeset
43