Mercurial > hg > octave-nkf
annotate scripts/plot/util/shg.m @ 19774:f64cdbe11621
doc: Periodic spellcheck of documentation.
* aspell-octave.en.pws: Add new audio keywords to private dictionary.
* audiodevinfo.cc: Wrap DriverVersion with @nospell directive.
author | Rik <rik@octave.org> |
---|---|
date | Tue, 13 Jan 2015 22:11:45 -0800 |
parents | d63878346099 |
children | 4197fc428c7d |
rev | line source |
---|---|
17744
d63878346099
maint: Update copyright notices for release.
John W. Eaton <jwe@octave.org>
parents:
17572
diff
changeset
|
1 ## Copyright (C) 1994-2013 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 |
17122
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
21 ## Show the graph window. |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
22 ## |
eaab03308c0b
doc: Rewrite docstrings for most plot functions.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
23 ## Currently, this is the same as executing @code{drawnow}. |
6895 | 24 ## @seealso{drawnow, figure} |
3426 | 25 ## @end deftypefn |
946 | 26 |
2314 | 27 ## Author: jwe |
28 | |
2311 | 29 function shg () |
946 | 30 |
31 if (nargin != 0) | |
32 warning ("shg: ignoring extra arguments"); | |
33 endif | |
34 | |
6257 | 35 drawnow (); |
946 | 36 |
37 endfunction | |
17338
1c89599167a6
maint: End m-files with 1 blank line.
Rik <rik@octave.org>
parents:
17122
diff
changeset
|
38 |