Mercurial > hg > octave-lyh
annotate doc/interpreter/io.txi @ 16659:608e307b4914 ss-3-7-5
snapshot 3.7.5
* configure.ac (OCTAVE_VERSION): Bump to 3.7.5.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 14 May 2013 05:23:45 -0400 |
parents | 70c47da7e02b |
children | a4969508008e |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
14038
diff
changeset
|
1 @c Copyright (C) 1996-2012 John W. Eaton |
7018 | 2 @c |
3 @c This file is part of Octave. | |
4 @c | |
5 @c Octave is free software; you can redistribute it and/or modify it | |
6 @c under the terms of the GNU General Public License as published by the | |
7 @c Free Software Foundation; either version 3 of the License, or (at | |
8 @c your option) any later version. | |
9 @c | |
10 @c Octave is distributed in the hope that it will be useful, but WITHOUT | |
11 @c ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 @c FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 @c for more details. | |
14 @c | |
15 @c You should have received a copy of the GNU General Public License | |
16 @c along with Octave; see the file COPYING. If not, see | |
17 @c <http://www.gnu.org/licenses/>. | |
3294 | 18 |
4169 | 19 @node Input and Output |
3294 | 20 @chapter Input and Output |
21 | |
6666 | 22 Octave supports several ways of reading and writing data to or from the |
8828 | 23 prompt or a file. The simplest functions for data Input and Output |
12546
39ca02387a32
Improve docstrings for a number of functions.
Rik <octave@nomad.inbox5.com>
parents:
12522
diff
changeset
|
24 (I/O) are easy to use, but only provide limited control of how |
6666 | 25 data is processed. For more control, a set of functions modelled |
26 after the C standard library are also provided by Octave. | |
27 | |
28 @menu | |
29 * Basic Input and Output:: | |
30 * C-Style I/O Functions:: | |
31 @end menu | |
32 | |
33 @node Basic Input and Output | |
34 @section Basic Input and Output | |
35 | |
36 @c We could use a two-line introduction here... | |
37 | |
38 @menu | |
39 * Terminal Output:: | |
40 * Terminal Input:: | |
41 * Simple File I/O:: | |
42 @end menu | |
43 | |
44 @node Terminal Output | |
45 @subsection Terminal Output | |
46 | |
47 Since Octave normally prints the value of an expression as soon as it | |
48 has been evaluated, the simplest of all I/O functions is a simple | |
49 expression. For example, the following expression will display the | |
50 value of @samp{pi} | |
51 | |
52 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
53 @group |
6666 | 54 pi |
55 @print{} pi = 3.1416 | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
56 @end group |
6666 | 57 @end example |
58 | |
59 This works well as long as it is acceptable to have the name of the | |
60 variable (or @samp{ans}) printed along with the value. To print the | |
61 value of a variable without printing its name, use the function | |
62 @code{disp}. | |
63 | |
64 The @code{format} command offers some control over the way Octave prints | |
65 values with @code{disp} and through the normal echoing mechanism. | |
66 | |
67 @DOCSTRING(disp) | |
68 | |
12562
c686d2be0102
Add list_in_columns, terminal_size functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12546
diff
changeset
|
69 @DOCSTRING(list_in_columns) |
c686d2be0102
Add list_in_columns, terminal_size functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12546
diff
changeset
|
70 |
c686d2be0102
Add list_in_columns, terminal_size functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12546
diff
changeset
|
71 @DOCSTRING(terminal_size) |
c686d2be0102
Add list_in_columns, terminal_size functions to documentation.
Rik <octave@nomad.inbox5.com>
parents:
12546
diff
changeset
|
72 |
6666 | 73 @DOCSTRING(format) |
74 | |
75 @menu | |
76 * Paging Screen Output:: | |
77 @end menu | |
78 | |
79 @node Paging Screen Output | |
80 @subsubsection Paging Screen Output | |
81 | |
3294 | 82 When running interactively, Octave normally sends any output intended |
83 for your terminal that is more than one screen long to a paging program, | |
84 such as @code{less} or @code{more}. This avoids the problem of having a | |
85 large volume of output stream by before you can read it. With | |
86 @code{less} (and some versions of @code{more}) you can also scan forward | |
87 and backward, and search for specific items. | |
88 | |
89 Normally, no output is displayed by the pager until just before Octave | |
90 is ready to print the top level prompt, or read from the standard input | |
91 (for example, by using the @code{fscanf} or @code{scanf} functions). | |
92 This means that there may be some delay before any output appears on | |
93 your screen if you have asked Octave to perform a significant amount of | |
94 work with a single command statement. The function @code{fflush} may be | |
95 used to force output to be sent to the pager (or any other stream) | |
96 immediately. | |
97 | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
9701
diff
changeset
|
98 You can select the program to run as the pager using the @env{PAGER} |
6666 | 99 function, and you can turn paging off by using the function |
100 @code{more}. | |
3294 | 101 |
3372 | 102 @DOCSTRING(more) |
3294 | 103 |
3372 | 104 @DOCSTRING(PAGER) |
3294 | 105 |
6549 | 106 @DOCSTRING(PAGER_FLAGS) |
107 | |
3372 | 108 @DOCSTRING(page_screen_output) |
3294 | 109 |
3372 | 110 @DOCSTRING(page_output_immediately) |
3294 | 111 |
3372 | 112 @DOCSTRING(fflush) |
3294 | 113 |
5775 | 114 @c FIXME -- maybe this would be a good place to describe the |
3294 | 115 @c following message: |
116 @c | |
117 @c warning: connection to external pager (pid = 9334) lost -- | |
118 @c warning: pending computations and output may be lost | |
119 @c warning: broken pipe | |
120 | |
4167 | 121 @node Terminal Input |
3294 | 122 @subsection Terminal Input |
123 | |
124 Octave has three functions that make it easy to prompt users for | |
125 input. The @code{input} and @code{menu} functions are normally | |
126 used for managing an interactive dialog with a user, and the | |
127 @code{keyboard} function is normally used for doing simple debugging. | |
128 | |
3372 | 129 @DOCSTRING(input) |
3294 | 130 |
3372 | 131 @DOCSTRING(menu) |
3294 | 132 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
133 @DOCSTRING(yes_or_no) |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
134 |
6646 | 135 For @code{input}, the normal command line history and editing functions |
136 are available at the prompt. | |
3294 | 137 |
138 Octave also has a function that makes it possible to get a single | |
139 character from the keyboard without requiring the user to type a | |
140 carriage return. | |
141 | |
3372 | 142 @DOCSTRING(kbhit) |
3294 | 143 |
4167 | 144 @node Simple File I/O |
3294 | 145 @subsection Simple File I/O |
146 | |
5225 | 147 @cindex saving data |
148 @cindex loading data | |
3294 | 149 The @code{save} and @code{load} commands allow data to be written to and |
150 read from disk files in various formats. The default format of files | |
6666 | 151 written by the @code{save} command can be controlled using the functions |
152 @code{default_save_options} and @code{save_precision}. | |
153 | |
154 As an example the following code creates a 3-by-3 matrix and saves it | |
155 to the file @samp{myfile.mat}. | |
156 | |
157 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
158 @group |
6666 | 159 A = [ 1:3; 4:6; 7:9 ]; |
160 save myfile.mat A | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
161 @end group |
6666 | 162 @end example |
3294 | 163 |
6666 | 164 Once one or more variables have been saved to a file, they can be |
165 read into memory using the @code{load} command. | |
166 | |
167 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
168 @group |
6666 | 169 load myfile.mat |
170 A | |
171 @print{} A = | |
172 @print{} | |
173 @print{} 1 2 3 | |
174 @print{} 4 5 6 | |
175 @print{} 7 8 9 | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
176 @end group |
6666 | 177 @end example |
3294 | 178 |
3372 | 179 @DOCSTRING(save) |
3294 | 180 |
6666 | 181 There are three functions that modify the behavior of @code{save}. |
182 | |
183 @DOCSTRING(default_save_options) | |
184 | |
185 @DOCSTRING(save_precision) | |
186 | |
187 @DOCSTRING(save_header_format_string) | |
188 | |
16214
ee041a93c755
put save functions text after save command
Michael Godfrey <michaeldgodfrey@gmail.com>
parents:
15466
diff
changeset
|
189 @DOCSTRING(load) |
ee041a93c755
put save functions text after save command
Michael Godfrey <michaeldgodfrey@gmail.com>
parents:
15466
diff
changeset
|
190 |
ee041a93c755
put save functions text after save command
Michael Godfrey <michaeldgodfrey@gmail.com>
parents:
15466
diff
changeset
|
191 @DOCSTRING(fileread) |
ee041a93c755
put save functions text after save command
Michael Godfrey <michaeldgodfrey@gmail.com>
parents:
15466
diff
changeset
|
192 |
6666 | 193 @DOCSTRING(native_float_format) |
194 | |
8828 | 195 It is possible to write data to a file in a similar way to the |
6666 | 196 @code{disp} function for writing data to the screen. The @code{fdisp} |
197 works just like @code{disp} except its first argument is a file pointer | |
198 as created by @code{fopen}. As an example, the following code writes | |
199 to data @samp{myfile.txt}. | |
200 | |
201 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
202 @group |
6666 | 203 fid = fopen ("myfile.txt", "w"); |
204 fdisp (fid, "3/8 is "); | |
205 fdisp (fid, 3/8); | |
206 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
207 @end group |
6666 | 208 @end example |
209 | |
210 @noindent | |
211 @xref{Opening and Closing Files}, for details on how to use @code{fopen} | |
212 and @code{fclose}. | |
213 | |
214 @DOCSTRING(fdisp) | |
215 | |
7580
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
216 Octave can also read and write matrices text files such as comma |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
217 separated lists. |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
218 |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
219 @DOCSTRING(dlmwrite) |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
220 |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
221 @DOCSTRING(dlmread) |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
222 |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
223 @DOCSTRING(csvwrite) |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
224 |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
225 @DOCSTRING(csvread) |
b4aa9ef3d3ef
Port dlmread, dlmwrite, csvread and csvwrite from octave-forge
David Bateman <dbateman@free.fr>
parents:
7336
diff
changeset
|
226 |
11148 | 227 Formatted data from can be read from, or written to, text files as well. |
228 | |
11147
a81994607ca0
document textscan and textread
John W. Eaton <jwe@octave.org>
parents:
11142
diff
changeset
|
229 @DOCSTRING(textread) |
a81994607ca0
document textscan and textread
John W. Eaton <jwe@octave.org>
parents:
11142
diff
changeset
|
230 |
a81994607ca0
document textscan and textread
John W. Eaton <jwe@octave.org>
parents:
11142
diff
changeset
|
231 @DOCSTRING(textscan) |
a81994607ca0
document textscan and textread
John W. Eaton <jwe@octave.org>
parents:
11142
diff
changeset
|
232 |
15547
9a455cf96dbe
Incorporate importdata.m into Octave sources
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
15467
diff
changeset
|
233 The @code{importdata} function has the ability to work with a wide |
9a455cf96dbe
Incorporate importdata.m into Octave sources
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
15467
diff
changeset
|
234 variety of data. |
9a455cf96dbe
Incorporate importdata.m into Octave sources
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
15467
diff
changeset
|
235 |
9a455cf96dbe
Incorporate importdata.m into Octave sources
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
15467
diff
changeset
|
236 @DOCSTRING(importdata) |
9a455cf96dbe
Incorporate importdata.m into Octave sources
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
15467
diff
changeset
|
237 |
6666 | 238 @menu |
239 * Saving Data on Unexpected Exits:: | |
240 @end menu | |
241 | |
242 @node Saving Data on Unexpected Exits | |
243 @subsubsection Saving Data on Unexpected Exits | |
244 | |
8347
fa78cb8d8a5c
corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents:
8286
diff
changeset
|
245 If Octave for some reason exits unexpectedly it will by default save the |
6666 | 246 variables available in the workspace to a file in the current directory. |
14889
577df411e0c7
rename octave-core file to octave-workspace
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
247 By default this file is named @samp{octave-workspace} and can be loaded |
9039
51dc9691f23f
Cleanup documentation files errors.texi, debug.texi, io.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
248 into memory with the @code{load} command. While the default behavior |
6666 | 249 most often is reasonable it can be changed through the following |
250 functions. | |
3294 | 251 |
3372 | 252 @DOCSTRING(crash_dumps_octave_core) |
3294 | 253 |
4449 | 254 @DOCSTRING(sighup_dumps_octave_core) |
255 | |
256 @DOCSTRING(sigterm_dumps_octave_core) | |
257 | |
5287 | 258 @DOCSTRING(octave_core_file_options) |
3294 | 259 |
6550 | 260 @DOCSTRING(octave_core_file_limit) |
261 | |
262 @DOCSTRING(octave_core_file_name) | |
263 | |
4167 | 264 @node C-Style I/O Functions |
3294 | 265 @section C-Style I/O Functions |
266 | |
267 Octave's C-style input and output functions provide most of the | |
268 functionality of the C programming language's standard I/O library. The | |
269 argument lists for some of the input functions are slightly different, | |
270 however, because Octave has no way of passing arguments by reference. | |
271 | |
272 In the following, @var{file} refers to a file name and @code{fid} refers | |
273 to an integer file number, as returned by @code{fopen}. | |
274 | |
275 There are three files that are always available. Although these files | |
276 can be accessed using their corresponding numeric file ids, you should | |
277 always use the symbolic names given in the table below, since it will | |
278 make your programs easier to understand. | |
279 | |
3372 | 280 @DOCSTRING(stdin) |
3294 | 281 |
3372 | 282 @DOCSTRING(stdout) |
3294 | 283 |
3372 | 284 @DOCSTRING(stderr) |
3294 | 285 |
286 @menu | |
287 * Opening and Closing Files:: | |
288 * Simple Output:: | |
289 * Line-Oriented Input:: | |
290 * Formatted Output:: | |
291 * Output Conversion for Matrices:: | |
292 * Output Conversion Syntax:: | |
293 * Table of Output Conversions:: | |
294 * Integer Conversions:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
295 * Floating-Point Conversions:: |
3294 | 296 * Other Output Conversions:: |
297 * Formatted Input:: | |
298 * Input Conversion Syntax:: | |
299 * Table of Input Conversions:: | |
300 * Numeric Input Conversions:: | |
301 * String Input Conversions:: | |
302 * Binary I/O:: | |
303 * Temporary Files:: | |
304 * EOF and Errors:: | |
305 * File Positioning:: | |
306 @end menu | |
307 | |
4167 | 308 @node Opening and Closing Files |
3294 | 309 @subsection Opening and Closing Files |
310 | |
6666 | 311 When reading data from a file it must be opened for reading first, and |
312 likewise when writing to a file. The @code{fopen} function returns a | |
313 pointer to an open file that is ready to be read or written. Once all | |
314 data has been read from or written to the opened file it should be closed. | |
315 The @code{fclose} function does this. The following code illustrates | |
316 the basic pattern for writing to a file, but a very similar pattern is | |
317 used when reading a file. | |
318 | |
319 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
320 @group |
6666 | 321 filename = "myfile.txt"; |
322 fid = fopen (filename, "w"); | |
9039
51dc9691f23f
Cleanup documentation files errors.texi, debug.texi, io.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
323 # Do the actual I/O here@dots{} |
6666 | 324 fclose (fid); |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
325 @end group |
6666 | 326 @end example |
327 | |
3372 | 328 @DOCSTRING(fopen) |
3294 | 329 |
3372 | 330 @DOCSTRING(fclose) |
3294 | 331 |
11142
3450551f591e
new function, is_valid_file_id
John W. Eaton <jwe@octave.org>
parents:
10828
diff
changeset
|
332 @DOCSTRING(is_valid_file_id) |
3450551f591e
new function, is_valid_file_id
John W. Eaton <jwe@octave.org>
parents:
10828
diff
changeset
|
333 |
4167 | 334 @node Simple Output |
3294 | 335 @subsection Simple Output |
336 | |
6666 | 337 Once a file has been opened for writing a string can be written to the |
338 file using the @code{fputs} function. The following example shows | |
339 how to write the string @samp{Free Software is needed for Free Science} | |
340 to the file @samp{free.txt}. | |
341 | |
342 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
343 @group |
6666 | 344 filename = "free.txt"; |
345 fid = fopen (filename, "w"); | |
346 fputs (fid, "Free Software is needed for Free Science"); | |
347 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
348 @end group |
6666 | 349 @end example |
350 | |
3372 | 351 @DOCSTRING(fputs) |
3294 | 352 |
6666 | 353 A function much similar to @code{fputs} is available for writing data |
354 to the screen. The @code{puts} function works just like @code{fputs} | |
355 except it doesn't take a file pointer as its input. | |
356 | |
3372 | 357 @DOCSTRING(puts) |
3294 | 358 |
4167 | 359 @node Line-Oriented Input |
3294 | 360 @subsection Line-Oriented Input |
361 | |
6666 | 362 To read from a file it must be opened for reading using @code{fopen}. |
363 Then a line can be read from the file using @code{fgetl} as the following | |
364 code illustrates | |
365 | |
366 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
367 @group |
6666 | 368 fid = fopen ("free.txt"); |
369 txt = fgetl (fid) | |
370 @print{} Free Software is needed for Free Science | |
371 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
372 @end group |
6666 | 373 @end example |
374 | |
375 @noindent | |
376 This of course assumes that the file @samp{free.txt} exists and contains | |
377 the line @samp{Free Software is needed for Free Science}. | |
378 | |
3372 | 379 @DOCSTRING(fgetl) |
3294 | 380 |
3372 | 381 @DOCSTRING(fgets) |
3294 | 382 |
9701 | 383 @DOCSTRING(fskipl) |
384 | |
4167 | 385 @node Formatted Output |
3294 | 386 @subsection Formatted Output |
387 | |
388 This section describes how to call @code{printf} and related functions. | |
389 | |
390 The following functions are available for formatted output. They are | |
391 modelled after the C language functions of the same name, but they | |
392 interpret the format template differently in order to improve the | |
393 performance of printing vector and matrix values. | |
394 | |
3372 | 395 @DOCSTRING(printf) |
3294 | 396 |
3372 | 397 @DOCSTRING(fprintf) |
3294 | 398 |
3372 | 399 @DOCSTRING(sprintf) |
3294 | 400 |
401 The @code{printf} function can be used to print any number of arguments. | |
402 The template string argument you supply in a call provides | |
403 information not only about the number of additional arguments, but also | |
404 about their types and what style should be used for printing them. | |
405 | |
406 Ordinary characters in the template string are simply written to the | |
407 output stream as-is, while @dfn{conversion specifications} introduced by | |
408 a @samp{%} character in the template cause subsequent arguments to be | |
409 formatted and written to the output stream. For example, | |
410 @cindex conversion specifications (@code{printf}) | |
411 | |
6670 | 412 @example |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
413 @group |
3294 | 414 pct = 37; |
415 filename = "foo.txt"; | |
15466
d174210ce1ec
use ' instead of ` in error messages, warnings and most comments
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
416 printf ("Processed %d%% of '%s'.\nPlease be patient.\n", |
7031 | 417 pct, filename); |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
418 @end group |
6670 | 419 @end example |
3294 | 420 |
421 @noindent | |
422 produces output like | |
423 | |
6670 | 424 @example |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
425 @group |
15466
d174210ce1ec
use ' instead of ` in error messages, warnings and most comments
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
426 Processed 37% of 'foo.txt'. |
3294 | 427 Please be patient. |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
428 @end group |
6670 | 429 @end example |
3294 | 430 |
431 This example shows the use of the @samp{%d} conversion to specify that a | |
432 scalar argument should be printed in decimal notation, the @samp{%s} | |
433 conversion to specify printing of a string argument, and the @samp{%%} | |
434 conversion to print a literal @samp{%} character. | |
435 | |
436 There are also conversions for printing an integer argument as an | |
437 unsigned value in octal, decimal, or hexadecimal radix (@samp{%o}, | |
438 @samp{%u}, or @samp{%x}, respectively); or as a character value | |
439 (@samp{%c}). | |
440 | |
441 Floating-point numbers can be printed in normal, fixed-point notation | |
442 using the @samp{%f} conversion or in exponential notation using the | |
443 @samp{%e} conversion. The @samp{%g} conversion uses either @samp{%e} | |
444 or @samp{%f} format, depending on what is more appropriate for the | |
445 magnitude of the particular number. | |
446 | |
447 You can control formatting more precisely by writing @dfn{modifiers} | |
448 between the @samp{%} and the character that indicates which conversion | |
449 to apply. These slightly alter the ordinary behavior of the conversion. | |
450 For example, most conversion specifications permit you to specify a | |
451 minimum field width and a flag indicating whether you want the result | |
452 left- or right-justified within the field. | |
453 | |
454 The specific flags and modifiers that are permitted and their | |
455 interpretation vary depending on the particular conversion. They're all | |
456 described in more detail in the following sections. | |
457 | |
4167 | 458 @node Output Conversion for Matrices |
3294 | 459 @subsection Output Conversion for Matrices |
460 | |
461 When given a matrix value, Octave's formatted output functions cycle | |
462 through the format template until all the values in the matrix have been | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
9701
diff
changeset
|
463 printed. For example: |
3294 | 464 |
465 @example | |
466 @group | |
467 printf ("%4.2f %10.2e %8.4g\n", hilb (3)); | |
468 | |
469 @print{} 1.00 5.00e-01 0.3333 | |
470 @print{} 0.50 3.33e-01 0.25 | |
471 @print{} 0.33 2.50e-01 0.2 | |
472 @end group | |
473 @end example | |
474 | |
475 If more than one value is to be printed in a single call, the output | |
476 functions do not return to the beginning of the format template when | |
477 moving on from one value to the next. This can lead to confusing output | |
478 if the number of elements in the matrices are not exact multiples of the | |
10828
322f43e0e170
Grammarcheck .txi documentation files.
Rik <octave@nomad.inbox5.com>
parents:
9701
diff
changeset
|
479 number of conversions in the format template. For example: |
3294 | 480 |
481 @example | |
482 @group | |
483 printf ("%4.2f %10.2e %8.4g\n", [1, 2], [3, 4]); | |
484 | |
485 @print{} 1.00 2.00e+00 3 | |
486 @print{} 4.00 | |
487 @end group | |
488 @end example | |
489 | |
490 If this is not what you want, use a series of calls instead of just one. | |
491 | |
4167 | 492 @node Output Conversion Syntax |
3294 | 493 @subsection Output Conversion Syntax |
494 | |
495 This section provides details about the precise syntax of conversion | |
496 specifications that can appear in a @code{printf} template | |
497 string. | |
498 | |
499 Characters in the template string that are not part of a | |
500 conversion specification are printed as-is to the output stream. | |
501 | |
502 The conversion specifications in a @code{printf} template string have | |
503 the general form: | |
504 | |
6670 | 505 @example |
3294 | 506 % @var{flags} @var{width} @r{[} . @var{precision} @r{]} @var{type} @var{conversion} |
6670 | 507 @end example |
3294 | 508 |
509 For example, in the conversion specifier @samp{%-10.8ld}, the @samp{-} | |
510 is a flag, @samp{10} specifies the field width, the precision is | |
511 @samp{8}, the letter @samp{l} is a type modifier, and @samp{d} specifies | |
512 the conversion style. (This particular type specifier says to print a | |
513 numeric argument in decimal notation, with a minimum of 8 digits | |
514 left-justified in a field at least 10 characters wide.) | |
515 | |
516 In more detail, output conversion specifications consist of an | |
517 initial @samp{%} character followed in sequence by: | |
518 | |
519 @itemize @bullet | |
520 @item | |
521 Zero or more @dfn{flag characters} that modify the normal behavior of | |
522 the conversion specification. | |
523 @cindex flag character (@code{printf}) | |
524 | |
525 @item | |
526 An optional decimal integer specifying the @dfn{minimum field width}. | |
527 If the normal conversion produces fewer characters than this, the field | |
528 is padded with spaces to the specified width. This is a @emph{minimum} | |
529 value; if the normal conversion produces more characters than this, the | |
530 field is @emph{not} truncated. Normally, the output is right-justified | |
531 within the field. | |
532 @cindex minimum field width (@code{printf}) | |
533 | |
534 You can also specify a field width of @samp{*}. This means that the | |
535 next argument in the argument list (before the actual value to be | |
536 printed) is used as the field width. The value is rounded to the | |
537 nearest integer. If the value is negative, this means to set the | |
538 @samp{-} flag (see below) and to use the absolute value as the field | |
539 width. | |
540 | |
541 @item | |
542 An optional @dfn{precision} to specify the number of digits to be | |
543 written for the numeric conversions. If the precision is specified, it | |
544 consists of a period (@samp{.}) followed optionally by a decimal integer | |
545 (which defaults to zero if omitted). | |
546 @cindex precision (@code{printf}) | |
547 | |
548 You can also specify a precision of @samp{*}. This means that the next | |
549 argument in the argument list (before the actual value to be printed) is | |
550 used as the precision. The value must be an integer, and is ignored | |
551 if it is negative. | |
552 | |
553 @item | |
554 An optional @dfn{type modifier character}. This character is ignored by | |
555 Octave's @code{printf} function, but is recognized to provide | |
556 compatibility with the C language @code{printf}. | |
557 | |
558 @item | |
559 A character that specifies the conversion to be applied. | |
560 @end itemize | |
561 | |
562 The exact options that are permitted and how they are interpreted vary | |
563 between the different conversion specifiers. See the descriptions of the | |
564 individual conversions for information about the particular options that | |
565 they use. | |
566 | |
4167 | 567 @node Table of Output Conversions |
3294 | 568 @subsection Table of Output Conversions |
569 @cindex output conversions, for @code{printf} | |
570 | |
571 Here is a table summarizing what all the different conversions do: | |
572 | |
573 @table @asis | |
574 @item @samp{%d}, @samp{%i} | |
575 Print an integer as a signed decimal number. @xref{Integer | |
576 Conversions}, for details. @samp{%d} and @samp{%i} are synonymous for | |
577 output, but are different when used with @code{scanf} for input | |
578 (@pxref{Table of Input Conversions}). | |
579 | |
580 @item @samp{%o} | |
581 Print an integer as an unsigned octal number. @xref{Integer | |
582 Conversions}, for details. | |
583 | |
584 @item @samp{%u} | |
585 Print an integer as an unsigned decimal number. @xref{Integer | |
586 Conversions}, for details. | |
587 | |
588 @item @samp{%x}, @samp{%X} | |
589 Print an integer as an unsigned hexadecimal number. @samp{%x} uses | |
14038
b0cdd60db5e5
doc: Grammarcheck documentation ahead of 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents:
13943
diff
changeset
|
590 lowercase letters and @samp{%X} uses uppercase. @xref{Integer |
3294 | 591 Conversions}, for details. |
592 | |
593 @item @samp{%f} | |
594 Print a floating-point number in normal (fixed-point) notation. | |
595 @xref{Floating-Point Conversions}, for details. | |
596 | |
597 @item @samp{%e}, @samp{%E} | |
598 Print a floating-point number in exponential notation. @samp{%e} uses | |
14038
b0cdd60db5e5
doc: Grammarcheck documentation ahead of 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents:
13943
diff
changeset
|
599 lowercase letters and @samp{%E} uses uppercase. @xref{Floating-Point |
3294 | 600 Conversions}, for details. |
601 | |
602 @item @samp{%g}, @samp{%G} | |
603 Print a floating-point number in either normal (fixed-point) or | |
604 exponential notation, whichever is more appropriate for its magnitude. | |
14038
b0cdd60db5e5
doc: Grammarcheck documentation ahead of 3.6.0 release.
Rik <octave@nomad.inbox5.com>
parents:
13943
diff
changeset
|
605 @samp{%g} uses lowercase letters and @samp{%G} uses uppercase. |
3294 | 606 @xref{Floating-Point Conversions}, for details. |
607 | |
608 @item @samp{%c} | |
609 Print a single character. @xref{Other Output Conversions}. | |
610 | |
611 @item @samp{%s} | |
612 Print a string. @xref{Other Output Conversions}. | |
613 | |
614 @item @samp{%%} | |
615 Print a literal @samp{%} character. @xref{Other Output Conversions}. | |
616 @end table | |
617 | |
618 If the syntax of a conversion specification is invalid, unpredictable | |
619 things will happen, so don't do this. If there aren't enough function | |
620 arguments provided to supply values for all the conversion | |
621 specifications in the template string, or if the arguments are not of | |
622 the correct types, the results are unpredictable. If you supply more | |
623 arguments than conversion specifications, the extra argument values are | |
624 simply ignored; this is sometimes useful. | |
625 | |
4167 | 626 @node Integer Conversions |
3294 | 627 @subsection Integer Conversions |
628 | |
629 This section describes the options for the @samp{%d}, @samp{%i}, | |
630 @samp{%o}, @samp{%u}, @samp{%x}, and @samp{%X} conversion | |
631 specifications. These conversions print integers in various formats. | |
632 | |
633 The @samp{%d} and @samp{%i} conversion specifications both print an | |
634 numeric argument as a signed decimal number; while @samp{%o}, | |
635 @samp{%u}, and @samp{%x} print the argument as an unsigned octal, | |
636 decimal, or hexadecimal number (respectively). The @samp{%X} conversion | |
637 specification is just like @samp{%x} except that it uses the characters | |
638 @samp{ABCDEF} as digits instead of @samp{abcdef}. | |
639 | |
640 The following flags are meaningful: | |
641 | |
642 @table @asis | |
643 @item @samp{-} | |
644 Left-justify the result in the field (instead of the normal | |
645 right-justification). | |
646 | |
647 @item @samp{+} | |
648 For the signed @samp{%d} and @samp{%i} conversions, print a | |
649 plus sign if the value is positive. | |
650 | |
651 @item @samp{ } | |
652 For the signed @samp{%d} and @samp{%i} conversions, if the result | |
653 doesn't start with a plus or minus sign, prefix it with a space | |
654 character instead. Since the @samp{+} flag ensures that the result | |
655 includes a sign, this flag is ignored if you supply both of them. | |
656 | |
657 @item @samp{#} | |
658 For the @samp{%o} conversion, this forces the leading digit to be | |
659 @samp{0}, as if by increasing the precision. For @samp{%x} or | |
660 @samp{%X}, this prefixes a leading @samp{0x} or @samp{0X} (respectively) | |
661 to the result. This doesn't do anything useful for the @samp{%d}, | |
662 @samp{%i}, or @samp{%u} conversions. | |
663 | |
664 @item @samp{0} | |
665 Pad the field with zeros instead of spaces. The zeros are placed after | |
666 any indication of sign or base. This flag is ignored if the @samp{-} | |
667 flag is also specified, or if a precision is specified. | |
668 @end table | |
669 | |
670 If a precision is supplied, it specifies the minimum number of digits to | |
671 appear; leading zeros are produced if necessary. If you don't specify a | |
672 precision, the number is printed with as many digits as it needs. If | |
673 you convert a value of zero with an explicit precision of zero, then no | |
674 characters at all are produced. | |
675 | |
4167 | 676 @node Floating-Point Conversions |
3294 | 677 @subsection Floating-Point Conversions |
678 | |
679 This section discusses the conversion specifications for floating-point | |
680 numbers: the @samp{%f}, @samp{%e}, @samp{%E}, @samp{%g}, and @samp{%G} | |
681 conversions. | |
682 | |
683 The @samp{%f} conversion prints its argument in fixed-point notation, | |
684 producing output of the form | |
685 @w{[@code{-}]@var{ddd}@code{.}@var{ddd}}, | |
686 where the number of digits following the decimal point is controlled | |
687 by the precision you specify. | |
688 | |
689 The @samp{%e} conversion prints its argument in exponential notation, | |
690 producing output of the form | |
691 @w{[@code{-}]@var{d}@code{.}@var{ddd}@code{e}[@code{+}|@code{-}]@var{dd}}. | |
692 Again, the number of digits following the decimal point is controlled by | |
693 the precision. The exponent always contains at least two digits. The | |
694 @samp{%E} conversion is similar but the exponent is marked with the letter | |
695 @samp{E} instead of @samp{e}. | |
696 | |
697 The @samp{%g} and @samp{%G} conversions print the argument in the style | |
698 of @samp{%e} or @samp{%E} (respectively) if the exponent would be less | |
699 than -4 or greater than or equal to the precision; otherwise they use the | |
700 @samp{%f} style. Trailing zeros are removed from the fractional portion | |
701 of the result and a decimal-point character appears only if it is | |
702 followed by a digit. | |
703 | |
704 The following flags can be used to modify the behavior: | |
705 | |
15466
d174210ce1ec
use ' instead of ` in error messages, warnings and most comments
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
706 @c Not @samp so we can have ' ' as an item. |
3294 | 707 @table @asis |
708 @item @samp{-} | |
709 Left-justify the result in the field. Normally the result is | |
710 right-justified. | |
711 | |
712 @item @samp{+} | |
713 Always include a plus or minus sign in the result. | |
714 | |
715 @item @samp{ } | |
716 If the result doesn't start with a plus or minus sign, prefix it with a | |
717 space instead. Since the @samp{+} flag ensures that the result includes | |
718 a sign, this flag is ignored if you supply both of them. | |
719 | |
720 @item @samp{#} | |
721 Specifies that the result should always include a decimal point, even | |
722 if no digits follow it. For the @samp{%g} and @samp{%G} conversions, | |
723 this also forces trailing zeros after the decimal point to be left | |
724 in place where they would otherwise be removed. | |
725 | |
726 @item @samp{0} | |
727 Pad the field with zeros instead of spaces; the zeros are placed | |
728 after any sign. This flag is ignored if the @samp{-} flag is also | |
729 specified. | |
730 @end table | |
731 | |
732 The precision specifies how many digits follow the decimal-point | |
733 character for the @samp{%f}, @samp{%e}, and @samp{%E} conversions. For | |
734 these conversions, the default precision is @code{6}. If the precision | |
735 is explicitly @code{0}, this suppresses the decimal point character | |
736 entirely. For the @samp{%g} and @samp{%G} conversions, the precision | |
737 specifies how many significant digits to print. Significant digits are | |
738 the first digit before the decimal point, and all the digits after it. | |
739 If the precision is @code{0} or not specified for @samp{%g} or | |
740 @samp{%G}, it is treated like a value of @code{1}. If the value being | |
741 printed cannot be expressed precisely in the specified number of digits, | |
742 the value is rounded to the nearest number that fits. | |
743 | |
4167 | 744 @node Other Output Conversions |
3294 | 745 @subsection Other Output Conversions |
746 | |
747 This section describes miscellaneous conversions for @code{printf}. | |
748 | |
749 The @samp{%c} conversion prints a single character. The @samp{-} | |
750 flag can be used to specify left-justification in the field, but no | |
751 other flags are defined, and no precision or type modifier can be given. | |
752 For example: | |
753 | |
6670 | 754 @example |
3294 | 755 printf ("%c%c%c%c%c", "h", "e", "l", "l", "o"); |
6670 | 756 @end example |
3294 | 757 |
758 @noindent | |
759 prints @samp{hello}. | |
760 | |
761 The @samp{%s} conversion prints a string. The corresponding argument | |
762 must be a string. A precision can be specified to indicate the maximum | |
763 number of characters to write; otherwise characters in the string up to | |
764 but not including the terminating null character are written to the | |
765 output stream. The @samp{-} flag can be used to specify | |
766 left-justification in the field, but no other flags or type modifiers | |
767 are defined for this conversion. For example: | |
768 | |
6670 | 769 @example |
3294 | 770 printf ("%3s%-6s", "no", "where"); |
6670 | 771 @end example |
3294 | 772 |
773 @noindent | |
774 prints @samp{ nowhere } (note the leading and trailing spaces). | |
775 | |
4167 | 776 @node Formatted Input |
3294 | 777 @subsection Formatted Input |
778 | |
779 Octave provides the @code{scanf}, @code{fscanf}, and @code{sscanf} | |
780 functions to read formatted input. There are two forms of each of these | |
781 functions. One can be used to extract vectors of data from a file, and | |
782 the other is more `C-like'. | |
783 | |
3428 | 784 @DOCSTRING(fscanf) |
3294 | 785 |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7580
diff
changeset
|
786 @DOCSTRING(scanf) |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7580
diff
changeset
|
787 |
3372 | 788 @DOCSTRING(sscanf) |
3294 | 789 |
790 Calls to @code{scanf} are superficially similar to calls to | |
791 @code{printf} in that arbitrary arguments are read under the control of | |
792 a template string. While the syntax of the conversion specifications in | |
793 the template is very similar to that for @code{printf}, the | |
794 interpretation of the template is oriented more towards free-format | |
795 input and simple pattern matching, rather than fixed-field formatting. | |
796 For example, most @code{scanf} conversions skip over any amount of | |
797 ``white space'' (including spaces, tabs, and newlines) in the input | |
798 file, and there is no concept of precision for the numeric input | |
799 conversions as there is for the corresponding output conversions. | |
800 Ordinarily, non-whitespace characters in the template are expected to | |
801 match characters in the input stream exactly. | |
802 @cindex conversion specifications (@code{scanf}) | |
803 | |
804 When a @dfn{matching failure} occurs, @code{scanf} returns immediately, | |
805 leaving the first non-matching character as the next character to be | |
806 read from the stream, and @code{scanf} returns all the items that were | |
807 successfully converted. | |
808 @cindex matching failure, in @code{scanf} | |
809 | |
810 The formatted input functions are not used as frequently as the | |
811 formatted output functions. Partly, this is because it takes some care | |
812 to use them properly. Another reason is that it is difficult to recover | |
813 from a matching error. | |
814 | |
4167 | 815 @node Input Conversion Syntax |
3294 | 816 @subsection Input Conversion Syntax |
817 | |
818 A @code{scanf} template string is a string that contains ordinary | |
819 multibyte characters interspersed with conversion specifications that | |
820 start with @samp{%}. | |
821 | |
822 Any whitespace character in the template causes any number of whitespace | |
823 characters in the input stream to be read and discarded. The whitespace | |
824 characters that are matched need not be exactly the same whitespace | |
825 characters that appear in the template string. For example, write | |
826 @samp{ , } in the template to recognize a comma with optional whitespace | |
827 before and after. | |
828 | |
829 Other characters in the template string that are not part of conversion | |
830 specifications must match characters in the input stream exactly; if | |
831 this is not the case, a matching failure occurs. | |
832 | |
833 The conversion specifications in a @code{scanf} template string | |
834 have the general form: | |
835 | |
6670 | 836 @example |
3294 | 837 % @var{flags} @var{width} @var{type} @var{conversion} |
6670 | 838 @end example |
3294 | 839 |
840 In more detail, an input conversion specification consists of an initial | |
841 @samp{%} character followed in sequence by: | |
842 | |
843 @itemize @bullet | |
844 @item | |
845 An optional @dfn{flag character} @samp{*}, which says to ignore the text | |
846 read for this specification. When @code{scanf} finds a conversion | |
847 specification that uses this flag, it reads input as directed by the | |
848 rest of the conversion specification, but it discards this input, does | |
849 not return any value, and does not increment the count of | |
850 successful assignments. | |
851 @cindex flag character (@code{scanf}) | |
852 | |
853 @item | |
854 An optional decimal integer that specifies the @dfn{maximum field | |
855 width}. Reading of characters from the input stream stops either when | |
856 this maximum is reached or when a non-matching character is found, | |
857 whichever happens first. Most conversions discard initial whitespace | |
858 characters, and these discarded characters don't count towards the | |
859 maximum field width. Conversions that do not discard initial whitespace | |
860 are explicitly documented. | |
861 @cindex maximum field width (@code{scanf}) | |
862 | |
863 @item | |
864 An optional type modifier character. This character is ignored by | |
865 Octave's @code{scanf} function, but is recognized to provide | |
866 compatibility with the C language @code{scanf}. | |
867 | |
868 @item | |
869 A character that specifies the conversion to be applied. | |
870 @end itemize | |
871 | |
872 The exact options that are permitted and how they are interpreted vary | |
873 between the different conversion specifiers. See the descriptions of the | |
874 individual conversions for information about the particular options that | |
875 they allow. | |
876 | |
4167 | 877 @node Table of Input Conversions |
3294 | 878 @subsection Table of Input Conversions |
879 @cindex input conversions, for @code{scanf} | |
880 | |
881 Here is a table that summarizes the various conversion specifications: | |
882 | |
883 @table @asis | |
884 @item @samp{%d} | |
885 Matches an optionally signed integer written in decimal. @xref{Numeric | |
886 Input Conversions}. | |
887 | |
888 @item @samp{%i} | |
889 Matches an optionally signed integer in any of the formats that the C | |
890 language defines for specifying an integer constant. @xref{Numeric | |
891 Input Conversions}. | |
892 | |
893 @item @samp{%o} | |
894 Matches an unsigned integer written in octal radix. | |
895 @xref{Numeric Input Conversions}. | |
896 | |
897 @item @samp{%u} | |
898 Matches an unsigned integer written in decimal radix. | |
899 @xref{Numeric Input Conversions}. | |
900 | |
901 @item @samp{%x}, @samp{%X} | |
902 Matches an unsigned integer written in hexadecimal radix. | |
903 @xref{Numeric Input Conversions}. | |
904 | |
905 @item @samp{%e}, @samp{%f}, @samp{%g}, @samp{%E}, @samp{%G} | |
906 Matches an optionally signed floating-point number. @xref{Numeric Input | |
907 Conversions}. | |
908 | |
909 @item @samp{%s} | |
910 Matches a string containing only non-whitespace characters. | |
911 @xref{String Input Conversions}. | |
912 | |
913 @item @samp{%c} | |
914 Matches a string of one or more characters; the number of characters | |
915 read is controlled by the maximum field width given for the conversion. | |
916 @xref{String Input Conversions}. | |
917 | |
918 @item @samp{%%} | |
919 This matches a literal @samp{%} character in the input stream. No | |
920 corresponding argument is used. | |
921 @end table | |
922 | |
923 If the syntax of a conversion specification is invalid, the behavior is | |
924 undefined. If there aren't enough function arguments provided to supply | |
925 addresses for all the conversion specifications in the template strings | |
926 that perform assignments, or if the arguments are not of the correct | |
927 types, the behavior is also undefined. On the other hand, extra | |
928 arguments are simply ignored. | |
929 | |
4167 | 930 @node Numeric Input Conversions |
3294 | 931 @subsection Numeric Input Conversions |
932 | |
933 This section describes the @code{scanf} conversions for reading numeric | |
934 values. | |
935 | |
936 The @samp{%d} conversion matches an optionally signed integer in decimal | |
937 radix. | |
938 | |
939 The @samp{%i} conversion matches an optionally signed integer in any of | |
940 the formats that the C language defines for specifying an integer | |
941 constant. | |
942 | |
943 For example, any of the strings @samp{10}, @samp{0xa}, or @samp{012} | |
944 could be read in as integers under the @samp{%i} conversion. Each of | |
945 these specifies a number with decimal value @code{10}. | |
946 | |
947 The @samp{%o}, @samp{%u}, and @samp{%x} conversions match unsigned | |
948 integers in octal, decimal, and hexadecimal radices, respectively. | |
949 | |
950 The @samp{%X} conversion is identical to the @samp{%x} conversion. They | |
951 both permit either uppercase or lowercase letters to be used as digits. | |
952 | |
953 Unlike the C language @code{scanf}, Octave ignores the @samp{h}, | |
954 @samp{l}, and @samp{L} modifiers. | |
955 | |
4167 | 956 @node String Input Conversions |
3294 | 957 @subsection String Input Conversions |
958 | |
959 This section describes the @code{scanf} input conversions for reading | |
960 string and character values: @samp{%s} and @samp{%c}. | |
961 | |
962 The @samp{%c} conversion is the simplest: it matches a fixed number of | |
963 characters, always. The maximum field with says how many characters to | |
964 read; if you don't specify the maximum, the default is 1. This | |
965 conversion does not skip over initial whitespace characters. It reads | |
966 precisely the next @var{n} characters, and fails if it cannot get that | |
967 many. | |
968 | |
969 The @samp{%s} conversion matches a string of non-whitespace characters. | |
970 It skips and discards initial whitespace, but stops when it encounters | |
971 more whitespace after having read something. | |
972 | |
973 For example, reading the input: | |
974 | |
6670 | 975 @example |
3294 | 976 hello, world |
6670 | 977 @end example |
3294 | 978 |
979 @noindent | |
980 with the conversion @samp{%10c} produces @code{" hello, wo"}, but | |
981 reading the same input with the conversion @samp{%10s} produces | |
982 @code{"hello,"}. | |
983 | |
4167 | 984 @node Binary I/O |
3294 | 985 @subsection Binary I/O |
986 | |
987 Octave can read and write binary data using the functions @code{fread} | |
988 and @code{fwrite}, which are patterned after the standard C functions | |
6939 | 989 with the same names. They are able to automatically swap the byte order |
990 of integer data and convert among the supported floating point formats | |
3294 | 991 as the data are read. |
992 | |
3372 | 993 @DOCSTRING(fread) |
3294 | 994 |
3372 | 995 @DOCSTRING(fwrite) |
3294 | 996 |
4167 | 997 @node Temporary Files |
3294 | 998 @subsection Temporary Files |
999 | |
6666 | 1000 Sometimes one needs to write data to a file that is only temporary. |
1001 This is most commonly used when an external program launched from | |
1002 within Octave needs to access data. When Octave exits all temporary | |
1003 files will be deleted, so this step need not be executed manually. | |
1004 | |
4328 | 1005 @DOCSTRING(mkstemp) |
1006 | |
1007 @DOCSTRING(tmpfile) | |
1008 | |
3372 | 1009 @DOCSTRING(tmpnam) |
3294 | 1010 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
1011 @node EOF and Errors, File Positioning, Temporary Files, C-Style I/O Functions |
3294 | 1012 @subsection End of File and Errors |
1013 | |
6666 | 1014 Once a file has been opened its status can be acquired. As an example |
1015 the @code{feof} functions determines if the end of the file has been | |
1016 reached. This can be very useful when reading small parts of a file | |
1017 at a time. The following example shows how to read one line at a time | |
1018 from a file until the end has been reached. | |
1019 | |
1020 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1021 @group |
6666 | 1022 filename = "myfile.txt"; |
1023 fid = fopen (filename, "r"); | |
1024 while (! feof (fid) ) | |
1025 text_line = fgetl (fid); | |
1026 endwhile | |
1027 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1028 @end group |
6666 | 1029 @end example |
1030 | |
1031 @noindent | |
1032 Note that in some situations it is more efficient to read the entire | |
1033 contents of a file and then process it, than it is to read it line by | |
1034 line. This has the potential advantage of removing the loop in the | |
1035 above code. | |
1036 | |
3372 | 1037 @DOCSTRING(feof) |
3294 | 1038 |
3372 | 1039 @DOCSTRING(ferror) |
3294 | 1040 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
1041 @DOCSTRING(fclear) |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
1042 |
3372 | 1043 @DOCSTRING(freport) |
3294 | 1044 |
4167 | 1045 @node File Positioning |
3294 | 1046 @subsection File Positioning |
1047 | |
1048 Three functions are available for setting and determining the position of | |
1049 the file pointer for a given file. | |
1050 | |
3372 | 1051 @DOCSTRING(ftell) |
1052 | |
1053 @DOCSTRING(fseek) | |
3294 | 1054 |
3372 | 1055 @DOCSTRING(SEEK_SET) |
3294 | 1056 |
3372 | 1057 @DOCSTRING(frewind) |
3294 | 1058 |
1059 The following example stores the current file position in the variable | |
1060 @code{marker}, moves the pointer to the beginning of the file, reads | |
1061 four characters, and then returns to the original position. | |
1062 | |
1063 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1064 @group |
3294 | 1065 marker = ftell (myfile); |
1066 frewind (myfile); | |
1067 fourch = fgets (myfile, 4); | |
1068 fseek (myfile, marker, SEEK_SET); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1069 @end group |
3294 | 1070 @end example |
1071 |