Mercurial > hg > octave-lyh
annotate scripts/plot/shg.m @ 14417:12d13534265c
Add support for figure positioning for gnuplot Windows terminals.
* __gnuplot_drawnow__.m: Support postion and size options for Windows term.
* __gnuplot_has_feature__.m: As of gnuplot-4.4.0 the Windows terminal accepts
the position and size options.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Tue, 28 Feb 2012 07:42:40 -0500 |
parents | 72c96de7a403 |
children | eaab03308c0b |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11563
diff
changeset
|
1 ## Copyright (C) 1994-2012 John W. Eaton |
2313 | 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. | |
2313 | 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/>. | |
946 | 18 |
3426 | 19 ## -*- texinfo -*- |
11563
3c6e8aaa9555
Grammarcheck m-files before 3.4 release.
Rik <octave@nomad.inbox5.com>
parents:
11523
diff
changeset
|
20 ## @deftypefn {Command} {} shg |
2311 | 21 ## Show the graph window. Currently, this is the same as executing |
6448 | 22 ## @code{drawnow}. |
6895 | 23 ## @seealso{drawnow, figure} |
3426 | 24 ## @end deftypefn |
946 | 25 |
2314 | 26 ## Author: jwe |
27 | |
2311 | 28 function shg () |
946 | 29 |
30 if (nargin != 0) | |
31 warning ("shg: ignoring extra arguments"); | |
32 endif | |
33 | |
6257 | 34 drawnow (); |
946 | 35 |
36 endfunction |