home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fb.zip / octave / SCRIPTS.ZIP / scripts.fat / plot / subwindw.m < prev    next >
Text File  |  1999-12-24  |  2KB  |  83 lines

  1. ## Copyright (C) 1996, 1997 John W. Eaton
  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
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  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
  16. ## along with Octave; see the file COPYING.  If not, write to the Free
  17. ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19.  
  20. ## -*- texinfo -*-
  21. ## @deftypefn {Function File} {} subwindw (@var{xn}, @var{yn})
  22. ## Sets the subwindw position in multiplt mode for the next plot.  The
  23. ## multiplt mode has to be previously initialized using the
  24. ## @code{multiplt} function, otherwise this command just becomes an alias
  25. ## to @code{multiplt}
  26. ## @end deftypefn
  27.  
  28. ## Author: Vinayak Dutt <Dutt.Vinayak@mayo.EDU>
  29. ## Created: 3 July 95
  30. ## Adapted-By: jwe
  31.  
  32. function subwindw (xn, yn)
  33.  
  34.   if (! gnuplot_has_multiplt)
  35.     error ("subwindw: gnuplot does not appear to support this feature");
  36.   endif
  37.  
  38.   ## global variables to keep track of multiplt options
  39.  
  40.   global __multiplt_mode__ = 0;
  41.   global __multiplt_xsize__;
  42.   global __multiplt_ysize__;
  43.   global __multiplt_xn__;
  44.   global __multiplt_yn__;
  45.  
  46.   ## check calling argument count
  47.  
  48.   if (nargin != 2)
  49.     usage ("subwindw (xn, yn)");
  50.   endif
  51.  
  52.   ## check for scalar inputs
  53.  
  54.   if (! (is_scal (xn) && is_scal (yn)))
  55.     error ("subwindw: xn and yn have to be scalars");
  56.   endif
  57.  
  58.   xn = round (xn);
  59.   yn = round (yn);
  60.  
  61.   ## switch to multiplt mode if not already in, and use the args as the
  62.   ## args to multiplt()
  63.  
  64.   if (! __multiplt_mode__)
  65.     multiplt (xn, yn);
  66.     return;
  67.   endif
  68.  
  69.   ## get the sub plot location
  70.  
  71.   if (xn < 1 || xn > __multiplt_xn__ || yn < 1 || yn > __multiplt_yn__)
  72.     error ("subwindw: incorrect xn and yn");
  73.   endif
  74.  
  75.   xo = (xn - 1.0) * __multiplt_xsize__;
  76.   yo = (__multiplt_yn__ - yn) * __multiplt_ysize__;
  77.  
  78.   eval (sprintf ("gset origin %g, %g", xo, yo));
  79.  
  80.   clearplot;
  81.  
  82. endfunction
  83.