Mercurial > hg > octave-nkf
annotate scripts/deprecated/replot.m @ 13998:6e9bf84dec3c
maint: periodic merge of stable to default
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 05 Dec 2011 02:03:35 -0500 |
parents | c792872f8942 |
children | 72c96de7a403 |
rev | line source |
---|---|
11523 | 1 ## Copyright (C) 2005-2011 John W. Eaton |
5214 | 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. | |
5214 | 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/>. | |
5214 | 18 |
19 ## -*- texinfo -*- | |
20 ## @deftypefn {Function File} {} replot () | |
6146 | 21 ## Refresh the plot window. |
5214 | 22 ## @end deftypefn |
23 | |
24 ## Author: jwe | |
25 | |
11530 | 26 ## Deprecated in version 3.4 |
27 | |
5214 | 28 function replot () |
11587
c792872f8942
all script files: untabify and strip trailing whitespace
John W. Eaton <jwe@octave.org>
parents:
11530
diff
changeset
|
29 |
11530 | 30 persistent warned = false; |
31 if (! warned) | |
32 warned = true; | |
33 warning ("Octave:deprecated-function", | |
34 "replot is obsolete and will be removed from a future version of Octave; please use refresh instead"); | |
35 endif | |
36 | |
5214 | 37 if (nargin == 0) |
6257 | 38 drawnow (); |
5214 | 39 else |
6046 | 40 print_usage (); |
5214 | 41 endif |
42 | |
43 endfunction |