~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to scripts/plot/zlabel.m

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (C) 1995, 1996, 1997, 1999, 2000, 2002, 2003, 2005, 2006,
 
2
##               2007 John W. Eaton
 
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
 
8
## the Free Software Foundation; either version 3 of the License, or (at
 
9
## your option) any later version.
 
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
 
17
## along with Octave; see the file COPYING.  If not, see
 
18
## <http://www.gnu.org/licenses/>.
 
19
 
 
20
## -*- texinfo -*-
 
21
## @deftypefn {Function File} {} zlabel (@var{string})
 
22
## @deftypefnx {Function File} {} zlabel (@var{h}, @var{string})
 
23
## See xlabel.
 
24
## @end deftypefn
 
25
 
 
26
## PKG_ADD: mark_as_command zlabel
 
27
 
 
28
## Author: jwe
 
29
 
 
30
function retval = zlabel (varargin)
 
31
 
 
32
  [h, varargin, nargin] = __plt_get_axis_arg__ ("zlabel", varargin{:});
 
33
 
 
34
  if (rem (nargin, 2) != 1)
 
35
    print_usage ();
 
36
  endif
 
37
 
 
38
  oldh = gca ();
 
39
  unwind_protect
 
40
    axes (h);
 
41
    tmp = __axis_label__ ("zlabel", varargin{:});
 
42
  unwind_protect_cleanup
 
43
    axes (oldh);
 
44
  end_unwind_protect
 
45
 
 
46
  if (nargout > 0)
 
47
    retval = h;
 
48
  endif
 
49
 
 
50
endfunction