Mercurial > hg > octave-lyh
comparison doc/interpreter/io.txi @ 13943:5820f8ce683e
doc: Add undocumented functions to manual for 3.6.0 release
* gui.txi: New manual chapter for GUI-related functions
* Makefile.am: Add new gui.txi to build
* aspell-octave.en.pws: Add new words to spellcheck dictionary
* io.txi: Move file I/O dialogs to gui.txi
* octave.texi: Add new GUI chapter to manual
* strings.txi: Add is_dq_string and is_sq_string to manual
* system.txi: Add usejava to manual
* guidata.m: Fix incorrect use of @deftypefn
* uicontrol.m: Fix incorrect use of @deftypefn
* uiresume.m: Fix incorrect use of @deftypefn
* uiwait.m: Fix incorrect use of @deftypefn
* addpref.m, getpref.m, ispref.m, rmpref.m, setpref.m: Adjust seealso links
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Sat, 26 Nov 2011 17:25:05 -0800 |
parents | c686d2be0102 |
children | b0cdd60db5e5 |
comparison
equal
deleted
inserted
replaced
13942:d672edef956e | 13943:5820f8ce683e |
---|---|
26 after the C standard library are also provided by Octave. | 26 after the C standard library are also provided by Octave. |
27 | 27 |
28 @menu | 28 @menu |
29 * Basic Input and Output:: | 29 * Basic Input and Output:: |
30 * C-Style I/O Functions:: | 30 * C-Style I/O Functions:: |
31 * GUI Dialogs for I/O:: | |
32 @end menu | 31 @end menu |
33 | 32 |
34 @node Basic Input and Output | 33 @node Basic Input and Output |
35 @section Basic Input and Output | 34 @section Basic Input and Output |
36 | 35 |
1063 fourch = fgets (myfile, 4); | 1062 fourch = fgets (myfile, 4); |
1064 fseek (myfile, marker, SEEK_SET); | 1063 fseek (myfile, marker, SEEK_SET); |
1065 @end group | 1064 @end group |
1066 @end example | 1065 @end example |
1067 | 1066 |
1068 @node GUI Dialogs for I/O | |
1069 @section GUI Dialogs for I/O | |
1070 | |
1071 Simple dialog menus are available for choosing directories or files. They | |
1072 return a string variable which can then be used when calling any command | |
1073 requiring a file name. | |
1074 | |
1075 @DOCSTRING(uigetdir) | |
1076 | |
1077 @DOCSTRING(uigetfile) | |
1078 | |
1079 @DOCSTRING(uiputfile) | |
1080 |