view scripts/plot/figure.m @ 6046:34f96dd5441b

[project @ 2006-10-10 16:10:25 by jwe]
author jwe
date Tue, 10 Oct 2006 16:10:31 +0000
parents 250917610b55
children 44c91c5dfe1d
line wrap: on
line source

## Copyright (C) 1996, 1997 John W. Eaton
##
## This file is part of Octave.
##
## Octave is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## Octave is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Octave; see the file COPYING.  If not, write to the Free
## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
## 02110-1301, USA.

## -*- texinfo -*-
## @deftypefn {Function File} {} figure (@var{n})
## Set the current plot window to plot window @var{n}.  This function
## currently requires X11 and a version of gnuplot that supports multiple
## frames.  If @var{n} is not specified, the next available window
## number is chosen.
## @end deftypefn

## Author: jwe

function f = figure (n)

  __plot_globals__;

  static figure_list = create_set (0);
  static figure_called = 0;

  if (nargin == 0)
    f = max (figure_list) + 1;
  else
    f = n;
  endif

  if (nargin < 2)
    if (isnumeric (f) && f > 0 && round (f) == f)
      __current_figure__ = f;
    else
      error ("figure: expecting positive integer");
    endif
    figure_list = union (figure_list, f);
  elseif (rem (nargin, 2) == 0)
    if (! figure_called)
      figure_called = 1;
      warning ("figure: setting figure properties is unsupported");
    endif
  else
    print_usage ();
  endif

endfunction