Mercurial > hg > octave-lyh
annotate doc/interpreter/io.txi @ 16214:ee041a93c755 stable
put save functions text after save command
author | Michael Godfrey <michaeldgodfrey@gmail.com> |
---|---|
date | Thu, 07 Mar 2013 00:51:35 -0500 |
parents | d174210ce1ec |
children | 70c47da7e02b |
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 |
6666 | 233 @menu |
234 * Saving Data on Unexpected Exits:: | |
235 @end menu | |
236 | |
237 @node Saving Data on Unexpected Exits | |
238 @subsubsection Saving Data on Unexpected Exits | |
239 | |
8347
fa78cb8d8a5c
corrections for typos
Brian Gough<bjg@network-theory.co.uk>
parents:
8286
diff
changeset
|
240 If Octave for some reason exits unexpectedly it will by default save the |
6666 | 241 variables available in the workspace to a file in the current directory. |
242 By default this file is named @samp{octave-core} and can be loaded | |
9039
51dc9691f23f
Cleanup documentation files errors.texi, debug.texi, io.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
243 into memory with the @code{load} command. While the default behavior |
6666 | 244 most often is reasonable it can be changed through the following |
245 functions. | |
3294 | 246 |
3372 | 247 @DOCSTRING(crash_dumps_octave_core) |
3294 | 248 |
4449 | 249 @DOCSTRING(sighup_dumps_octave_core) |
250 | |
251 @DOCSTRING(sigterm_dumps_octave_core) | |
252 | |
5287 | 253 @DOCSTRING(octave_core_file_options) |
3294 | 254 |
6550 | 255 @DOCSTRING(octave_core_file_limit) |
256 | |
257 @DOCSTRING(octave_core_file_name) | |
258 | |
4167 | 259 @node C-Style I/O Functions |
3294 | 260 @section C-Style I/O Functions |
261 | |
262 Octave's C-style input and output functions provide most of the | |
263 functionality of the C programming language's standard I/O library. The | |
264 argument lists for some of the input functions are slightly different, | |
265 however, because Octave has no way of passing arguments by reference. | |
266 | |
267 In the following, @var{file} refers to a file name and @code{fid} refers | |
268 to an integer file number, as returned by @code{fopen}. | |
269 | |
270 There are three files that are always available. Although these files | |
271 can be accessed using their corresponding numeric file ids, you should | |
272 always use the symbolic names given in the table below, since it will | |
273 make your programs easier to understand. | |
274 | |
3372 | 275 @DOCSTRING(stdin) |
3294 | 276 |
3372 | 277 @DOCSTRING(stdout) |
3294 | 278 |
3372 | 279 @DOCSTRING(stderr) |
3294 | 280 |
281 @menu | |
282 * Opening and Closing Files:: | |
283 * Simple Output:: | |
284 * Line-Oriented Input:: | |
285 * Formatted Output:: | |
286 * Output Conversion for Matrices:: | |
287 * Output Conversion Syntax:: | |
288 * Table of Output Conversions:: | |
289 * Integer Conversions:: | |
9032
349616d9c38e
Cleanup top-level documentation menu in octave.texi
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
290 * Floating-Point Conversions:: |
3294 | 291 * Other Output Conversions:: |
292 * Formatted Input:: | |
293 * Input Conversion Syntax:: | |
294 * Table of Input Conversions:: | |
295 * Numeric Input Conversions:: | |
296 * String Input Conversions:: | |
297 * Binary I/O:: | |
298 * Temporary Files:: | |
299 * EOF and Errors:: | |
300 * File Positioning:: | |
301 @end menu | |
302 | |
4167 | 303 @node Opening and Closing Files |
3294 | 304 @subsection Opening and Closing Files |
305 | |
6666 | 306 When reading data from a file it must be opened for reading first, and |
307 likewise when writing to a file. The @code{fopen} function returns a | |
308 pointer to an open file that is ready to be read or written. Once all | |
309 data has been read from or written to the opened file it should be closed. | |
310 The @code{fclose} function does this. The following code illustrates | |
311 the basic pattern for writing to a file, but a very similar pattern is | |
312 used when reading a file. | |
313 | |
314 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
315 @group |
6666 | 316 filename = "myfile.txt"; |
317 fid = fopen (filename, "w"); | |
9039
51dc9691f23f
Cleanup documentation files errors.texi, debug.texi, io.texi
Rik <rdrider0-list@yahoo.com>
parents:
9032
diff
changeset
|
318 # Do the actual I/O here@dots{} |
6666 | 319 fclose (fid); |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
320 @end group |
6666 | 321 @end example |
322 | |
3372 | 323 @DOCSTRING(fopen) |
3294 | 324 |
3372 | 325 @DOCSTRING(fclose) |
3294 | 326 |
11142
3450551f591e
new function, is_valid_file_id
John W. Eaton <jwe@octave.org>
parents:
10828
diff
changeset
|
327 @DOCSTRING(is_valid_file_id) |
3450551f591e
new function, is_valid_file_id
John W. Eaton <jwe@octave.org>
parents:
10828
diff
changeset
|
328 |
4167 | 329 @node Simple Output |
3294 | 330 @subsection Simple Output |
331 | |
6666 | 332 Once a file has been opened for writing a string can be written to the |
333 file using the @code{fputs} function. The following example shows | |
334 how to write the string @samp{Free Software is needed for Free Science} | |
335 to the file @samp{free.txt}. | |
336 | |
337 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
338 @group |
6666 | 339 filename = "free.txt"; |
340 fid = fopen (filename, "w"); | |
341 fputs (fid, "Free Software is needed for Free Science"); | |
342 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
343 @end group |
6666 | 344 @end example |
345 | |
3372 | 346 @DOCSTRING(fputs) |
3294 | 347 |
6666 | 348 A function much similar to @code{fputs} is available for writing data |
349 to the screen. The @code{puts} function works just like @code{fputs} | |
350 except it doesn't take a file pointer as its input. | |
351 | |
3372 | 352 @DOCSTRING(puts) |
3294 | 353 |
4167 | 354 @node Line-Oriented Input |
3294 | 355 @subsection Line-Oriented Input |
356 | |
6666 | 357 To read from a file it must be opened for reading using @code{fopen}. |
358 Then a line can be read from the file using @code{fgetl} as the following | |
359 code illustrates | |
360 | |
361 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
362 @group |
6666 | 363 fid = fopen ("free.txt"); |
364 txt = fgetl (fid) | |
365 @print{} Free Software is needed for Free Science | |
366 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
367 @end group |
6666 | 368 @end example |
369 | |
370 @noindent | |
371 This of course assumes that the file @samp{free.txt} exists and contains | |
372 the line @samp{Free Software is needed for Free Science}. | |
373 | |
3372 | 374 @DOCSTRING(fgetl) |
3294 | 375 |
3372 | 376 @DOCSTRING(fgets) |
3294 | 377 |
9701 | 378 @DOCSTRING(fskipl) |
379 | |
4167 | 380 @node Formatted Output |
3294 | 381 @subsection Formatted Output |
382 | |
383 This section describes how to call @code{printf} and related functions. | |
384 | |
385 The following functions are available for formatted output. They are | |
386 modelled after the C language functions of the same name, but they | |
387 interpret the format template differently in order to improve the | |
388 performance of printing vector and matrix values. | |
389 | |
3372 | 390 @DOCSTRING(printf) |
3294 | 391 |
3372 | 392 @DOCSTRING(fprintf) |
3294 | 393 |
3372 | 394 @DOCSTRING(sprintf) |
3294 | 395 |
396 The @code{printf} function can be used to print any number of arguments. | |
397 The template string argument you supply in a call provides | |
398 information not only about the number of additional arguments, but also | |
399 about their types and what style should be used for printing them. | |
400 | |
401 Ordinary characters in the template string are simply written to the | |
402 output stream as-is, while @dfn{conversion specifications} introduced by | |
403 a @samp{%} character in the template cause subsequent arguments to be | |
404 formatted and written to the output stream. For example, | |
405 @cindex conversion specifications (@code{printf}) | |
406 | |
6670 | 407 @example |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
408 @group |
3294 | 409 pct = 37; |
410 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
|
411 printf ("Processed %d%% of '%s'.\nPlease be patient.\n", |
7031 | 412 pct, filename); |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
413 @end group |
6670 | 414 @end example |
3294 | 415 |
416 @noindent | |
417 produces output like | |
418 | |
6670 | 419 @example |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
420 @group |
15466
d174210ce1ec
use ' instead of ` in error messages, warnings and most comments
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
421 Processed 37% of 'foo.txt'. |
3294 | 422 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
|
423 @end group |
6670 | 424 @end example |
3294 | 425 |
426 This example shows the use of the @samp{%d} conversion to specify that a | |
427 scalar argument should be printed in decimal notation, the @samp{%s} | |
428 conversion to specify printing of a string argument, and the @samp{%%} | |
429 conversion to print a literal @samp{%} character. | |
430 | |
431 There are also conversions for printing an integer argument as an | |
432 unsigned value in octal, decimal, or hexadecimal radix (@samp{%o}, | |
433 @samp{%u}, or @samp{%x}, respectively); or as a character value | |
434 (@samp{%c}). | |
435 | |
436 Floating-point numbers can be printed in normal, fixed-point notation | |
437 using the @samp{%f} conversion or in exponential notation using the | |
438 @samp{%e} conversion. The @samp{%g} conversion uses either @samp{%e} | |
439 or @samp{%f} format, depending on what is more appropriate for the | |
440 magnitude of the particular number. | |
441 | |
442 You can control formatting more precisely by writing @dfn{modifiers} | |
443 between the @samp{%} and the character that indicates which conversion | |
444 to apply. These slightly alter the ordinary behavior of the conversion. | |
445 For example, most conversion specifications permit you to specify a | |
446 minimum field width and a flag indicating whether you want the result | |
447 left- or right-justified within the field. | |
448 | |
449 The specific flags and modifiers that are permitted and their | |
450 interpretation vary depending on the particular conversion. They're all | |
451 described in more detail in the following sections. | |
452 | |
4167 | 453 @node Output Conversion for Matrices |
3294 | 454 @subsection Output Conversion for Matrices |
455 | |
456 When given a matrix value, Octave's formatted output functions cycle | |
457 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
|
458 printed. For example: |
3294 | 459 |
460 @example | |
461 @group | |
462 printf ("%4.2f %10.2e %8.4g\n", hilb (3)); | |
463 | |
464 @print{} 1.00 5.00e-01 0.3333 | |
465 @print{} 0.50 3.33e-01 0.25 | |
466 @print{} 0.33 2.50e-01 0.2 | |
467 @end group | |
468 @end example | |
469 | |
470 If more than one value is to be printed in a single call, the output | |
471 functions do not return to the beginning of the format template when | |
472 moving on from one value to the next. This can lead to confusing output | |
473 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
|
474 number of conversions in the format template. For example: |
3294 | 475 |
476 @example | |
477 @group | |
478 printf ("%4.2f %10.2e %8.4g\n", [1, 2], [3, 4]); | |
479 | |
480 @print{} 1.00 2.00e+00 3 | |
481 @print{} 4.00 | |
482 @end group | |
483 @end example | |
484 | |
485 If this is not what you want, use a series of calls instead of just one. | |
486 | |
4167 | 487 @node Output Conversion Syntax |
3294 | 488 @subsection Output Conversion Syntax |
489 | |
490 This section provides details about the precise syntax of conversion | |
491 specifications that can appear in a @code{printf} template | |
492 string. | |
493 | |
494 Characters in the template string that are not part of a | |
495 conversion specification are printed as-is to the output stream. | |
496 | |
497 The conversion specifications in a @code{printf} template string have | |
498 the general form: | |
499 | |
6670 | 500 @example |
3294 | 501 % @var{flags} @var{width} @r{[} . @var{precision} @r{]} @var{type} @var{conversion} |
6670 | 502 @end example |
3294 | 503 |
504 For example, in the conversion specifier @samp{%-10.8ld}, the @samp{-} | |
505 is a flag, @samp{10} specifies the field width, the precision is | |
506 @samp{8}, the letter @samp{l} is a type modifier, and @samp{d} specifies | |
507 the conversion style. (This particular type specifier says to print a | |
508 numeric argument in decimal notation, with a minimum of 8 digits | |
509 left-justified in a field at least 10 characters wide.) | |
510 | |
511 In more detail, output conversion specifications consist of an | |
512 initial @samp{%} character followed in sequence by: | |
513 | |
514 @itemize @bullet | |
515 @item | |
516 Zero or more @dfn{flag characters} that modify the normal behavior of | |
517 the conversion specification. | |
518 @cindex flag character (@code{printf}) | |
519 | |
520 @item | |
521 An optional decimal integer specifying the @dfn{minimum field width}. | |
522 If the normal conversion produces fewer characters than this, the field | |
523 is padded with spaces to the specified width. This is a @emph{minimum} | |
524 value; if the normal conversion produces more characters than this, the | |
525 field is @emph{not} truncated. Normally, the output is right-justified | |
526 within the field. | |
527 @cindex minimum field width (@code{printf}) | |
528 | |
529 You can also specify a field width of @samp{*}. This means that the | |
530 next argument in the argument list (before the actual value to be | |
531 printed) is used as the field width. The value is rounded to the | |
532 nearest integer. If the value is negative, this means to set the | |
533 @samp{-} flag (see below) and to use the absolute value as the field | |
534 width. | |
535 | |
536 @item | |
537 An optional @dfn{precision} to specify the number of digits to be | |
538 written for the numeric conversions. If the precision is specified, it | |
539 consists of a period (@samp{.}) followed optionally by a decimal integer | |
540 (which defaults to zero if omitted). | |
541 @cindex precision (@code{printf}) | |
542 | |
543 You can also specify a precision of @samp{*}. This means that the next | |
544 argument in the argument list (before the actual value to be printed) is | |
545 used as the precision. The value must be an integer, and is ignored | |
546 if it is negative. | |
547 | |
548 @item | |
549 An optional @dfn{type modifier character}. This character is ignored by | |
550 Octave's @code{printf} function, but is recognized to provide | |
551 compatibility with the C language @code{printf}. | |
552 | |
553 @item | |
554 A character that specifies the conversion to be applied. | |
555 @end itemize | |
556 | |
557 The exact options that are permitted and how they are interpreted vary | |
558 between the different conversion specifiers. See the descriptions of the | |
559 individual conversions for information about the particular options that | |
560 they use. | |
561 | |
4167 | 562 @node Table of Output Conversions |
3294 | 563 @subsection Table of Output Conversions |
564 @cindex output conversions, for @code{printf} | |
565 | |
566 Here is a table summarizing what all the different conversions do: | |
567 | |
568 @table @asis | |
569 @item @samp{%d}, @samp{%i} | |
570 Print an integer as a signed decimal number. @xref{Integer | |
571 Conversions}, for details. @samp{%d} and @samp{%i} are synonymous for | |
572 output, but are different when used with @code{scanf} for input | |
573 (@pxref{Table of Input Conversions}). | |
574 | |
575 @item @samp{%o} | |
576 Print an integer as an unsigned octal number. @xref{Integer | |
577 Conversions}, for details. | |
578 | |
579 @item @samp{%u} | |
580 Print an integer as an unsigned decimal number. @xref{Integer | |
581 Conversions}, for details. | |
582 | |
583 @item @samp{%x}, @samp{%X} | |
584 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
|
585 lowercase letters and @samp{%X} uses uppercase. @xref{Integer |
3294 | 586 Conversions}, for details. |
587 | |
588 @item @samp{%f} | |
589 Print a floating-point number in normal (fixed-point) notation. | |
590 @xref{Floating-Point Conversions}, for details. | |
591 | |
592 @item @samp{%e}, @samp{%E} | |
593 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
|
594 lowercase letters and @samp{%E} uses uppercase. @xref{Floating-Point |
3294 | 595 Conversions}, for details. |
596 | |
597 @item @samp{%g}, @samp{%G} | |
598 Print a floating-point number in either normal (fixed-point) or | |
599 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
|
600 @samp{%g} uses lowercase letters and @samp{%G} uses uppercase. |
3294 | 601 @xref{Floating-Point Conversions}, for details. |
602 | |
603 @item @samp{%c} | |
604 Print a single character. @xref{Other Output Conversions}. | |
605 | |
606 @item @samp{%s} | |
607 Print a string. @xref{Other Output Conversions}. | |
608 | |
609 @item @samp{%%} | |
610 Print a literal @samp{%} character. @xref{Other Output Conversions}. | |
611 @end table | |
612 | |
613 If the syntax of a conversion specification is invalid, unpredictable | |
614 things will happen, so don't do this. If there aren't enough function | |
615 arguments provided to supply values for all the conversion | |
616 specifications in the template string, or if the arguments are not of | |
617 the correct types, the results are unpredictable. If you supply more | |
618 arguments than conversion specifications, the extra argument values are | |
619 simply ignored; this is sometimes useful. | |
620 | |
4167 | 621 @node Integer Conversions |
3294 | 622 @subsection Integer Conversions |
623 | |
624 This section describes the options for the @samp{%d}, @samp{%i}, | |
625 @samp{%o}, @samp{%u}, @samp{%x}, and @samp{%X} conversion | |
626 specifications. These conversions print integers in various formats. | |
627 | |
628 The @samp{%d} and @samp{%i} conversion specifications both print an | |
629 numeric argument as a signed decimal number; while @samp{%o}, | |
630 @samp{%u}, and @samp{%x} print the argument as an unsigned octal, | |
631 decimal, or hexadecimal number (respectively). The @samp{%X} conversion | |
632 specification is just like @samp{%x} except that it uses the characters | |
633 @samp{ABCDEF} as digits instead of @samp{abcdef}. | |
634 | |
635 The following flags are meaningful: | |
636 | |
637 @table @asis | |
638 @item @samp{-} | |
639 Left-justify the result in the field (instead of the normal | |
640 right-justification). | |
641 | |
642 @item @samp{+} | |
643 For the signed @samp{%d} and @samp{%i} conversions, print a | |
644 plus sign if the value is positive. | |
645 | |
646 @item @samp{ } | |
647 For the signed @samp{%d} and @samp{%i} conversions, if the result | |
648 doesn't start with a plus or minus sign, prefix it with a space | |
649 character instead. Since the @samp{+} flag ensures that the result | |
650 includes a sign, this flag is ignored if you supply both of them. | |
651 | |
652 @item @samp{#} | |
653 For the @samp{%o} conversion, this forces the leading digit to be | |
654 @samp{0}, as if by increasing the precision. For @samp{%x} or | |
655 @samp{%X}, this prefixes a leading @samp{0x} or @samp{0X} (respectively) | |
656 to the result. This doesn't do anything useful for the @samp{%d}, | |
657 @samp{%i}, or @samp{%u} conversions. | |
658 | |
659 @item @samp{0} | |
660 Pad the field with zeros instead of spaces. The zeros are placed after | |
661 any indication of sign or base. This flag is ignored if the @samp{-} | |
662 flag is also specified, or if a precision is specified. | |
663 @end table | |
664 | |
665 If a precision is supplied, it specifies the minimum number of digits to | |
666 appear; leading zeros are produced if necessary. If you don't specify a | |
667 precision, the number is printed with as many digits as it needs. If | |
668 you convert a value of zero with an explicit precision of zero, then no | |
669 characters at all are produced. | |
670 | |
4167 | 671 @node Floating-Point Conversions |
3294 | 672 @subsection Floating-Point Conversions |
673 | |
674 This section discusses the conversion specifications for floating-point | |
675 numbers: the @samp{%f}, @samp{%e}, @samp{%E}, @samp{%g}, and @samp{%G} | |
676 conversions. | |
677 | |
678 The @samp{%f} conversion prints its argument in fixed-point notation, | |
679 producing output of the form | |
680 @w{[@code{-}]@var{ddd}@code{.}@var{ddd}}, | |
681 where the number of digits following the decimal point is controlled | |
682 by the precision you specify. | |
683 | |
684 The @samp{%e} conversion prints its argument in exponential notation, | |
685 producing output of the form | |
686 @w{[@code{-}]@var{d}@code{.}@var{ddd}@code{e}[@code{+}|@code{-}]@var{dd}}. | |
687 Again, the number of digits following the decimal point is controlled by | |
688 the precision. The exponent always contains at least two digits. The | |
689 @samp{%E} conversion is similar but the exponent is marked with the letter | |
690 @samp{E} instead of @samp{e}. | |
691 | |
692 The @samp{%g} and @samp{%G} conversions print the argument in the style | |
693 of @samp{%e} or @samp{%E} (respectively) if the exponent would be less | |
694 than -4 or greater than or equal to the precision; otherwise they use the | |
695 @samp{%f} style. Trailing zeros are removed from the fractional portion | |
696 of the result and a decimal-point character appears only if it is | |
697 followed by a digit. | |
698 | |
699 The following flags can be used to modify the behavior: | |
700 | |
15466
d174210ce1ec
use ' instead of ` in error messages, warnings and most comments
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
701 @c Not @samp so we can have ' ' as an item. |
3294 | 702 @table @asis |
703 @item @samp{-} | |
704 Left-justify the result in the field. Normally the result is | |
705 right-justified. | |
706 | |
707 @item @samp{+} | |
708 Always include a plus or minus sign in the result. | |
709 | |
710 @item @samp{ } | |
711 If the result doesn't start with a plus or minus sign, prefix it with a | |
712 space instead. Since the @samp{+} flag ensures that the result includes | |
713 a sign, this flag is ignored if you supply both of them. | |
714 | |
715 @item @samp{#} | |
716 Specifies that the result should always include a decimal point, even | |
717 if no digits follow it. For the @samp{%g} and @samp{%G} conversions, | |
718 this also forces trailing zeros after the decimal point to be left | |
719 in place where they would otherwise be removed. | |
720 | |
721 @item @samp{0} | |
722 Pad the field with zeros instead of spaces; the zeros are placed | |
723 after any sign. This flag is ignored if the @samp{-} flag is also | |
724 specified. | |
725 @end table | |
726 | |
727 The precision specifies how many digits follow the decimal-point | |
728 character for the @samp{%f}, @samp{%e}, and @samp{%E} conversions. For | |
729 these conversions, the default precision is @code{6}. If the precision | |
730 is explicitly @code{0}, this suppresses the decimal point character | |
731 entirely. For the @samp{%g} and @samp{%G} conversions, the precision | |
732 specifies how many significant digits to print. Significant digits are | |
733 the first digit before the decimal point, and all the digits after it. | |
734 If the precision is @code{0} or not specified for @samp{%g} or | |
735 @samp{%G}, it is treated like a value of @code{1}. If the value being | |
736 printed cannot be expressed precisely in the specified number of digits, | |
737 the value is rounded to the nearest number that fits. | |
738 | |
4167 | 739 @node Other Output Conversions |
3294 | 740 @subsection Other Output Conversions |
741 | |
742 This section describes miscellaneous conversions for @code{printf}. | |
743 | |
744 The @samp{%c} conversion prints a single character. The @samp{-} | |
745 flag can be used to specify left-justification in the field, but no | |
746 other flags are defined, and no precision or type modifier can be given. | |
747 For example: | |
748 | |
6670 | 749 @example |
3294 | 750 printf ("%c%c%c%c%c", "h", "e", "l", "l", "o"); |
6670 | 751 @end example |
3294 | 752 |
753 @noindent | |
754 prints @samp{hello}. | |
755 | |
756 The @samp{%s} conversion prints a string. The corresponding argument | |
757 must be a string. A precision can be specified to indicate the maximum | |
758 number of characters to write; otherwise characters in the string up to | |
759 but not including the terminating null character are written to the | |
760 output stream. The @samp{-} flag can be used to specify | |
761 left-justification in the field, but no other flags or type modifiers | |
762 are defined for this conversion. For example: | |
763 | |
6670 | 764 @example |
3294 | 765 printf ("%3s%-6s", "no", "where"); |
6670 | 766 @end example |
3294 | 767 |
768 @noindent | |
769 prints @samp{ nowhere } (note the leading and trailing spaces). | |
770 | |
4167 | 771 @node Formatted Input |
3294 | 772 @subsection Formatted Input |
773 | |
774 Octave provides the @code{scanf}, @code{fscanf}, and @code{sscanf} | |
775 functions to read formatted input. There are two forms of each of these | |
776 functions. One can be used to extract vectors of data from a file, and | |
777 the other is more `C-like'. | |
778 | |
3428 | 779 @DOCSTRING(fscanf) |
3294 | 780 |
8286
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7580
diff
changeset
|
781 @DOCSTRING(scanf) |
6f2d95255911
fix @seealso references to point to existing anchors
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
7580
diff
changeset
|
782 |
3372 | 783 @DOCSTRING(sscanf) |
3294 | 784 |
785 Calls to @code{scanf} are superficially similar to calls to | |
786 @code{printf} in that arbitrary arguments are read under the control of | |
787 a template string. While the syntax of the conversion specifications in | |
788 the template is very similar to that for @code{printf}, the | |
789 interpretation of the template is oriented more towards free-format | |
790 input and simple pattern matching, rather than fixed-field formatting. | |
791 For example, most @code{scanf} conversions skip over any amount of | |
792 ``white space'' (including spaces, tabs, and newlines) in the input | |
793 file, and there is no concept of precision for the numeric input | |
794 conversions as there is for the corresponding output conversions. | |
795 Ordinarily, non-whitespace characters in the template are expected to | |
796 match characters in the input stream exactly. | |
797 @cindex conversion specifications (@code{scanf}) | |
798 | |
799 When a @dfn{matching failure} occurs, @code{scanf} returns immediately, | |
800 leaving the first non-matching character as the next character to be | |
801 read from the stream, and @code{scanf} returns all the items that were | |
802 successfully converted. | |
803 @cindex matching failure, in @code{scanf} | |
804 | |
805 The formatted input functions are not used as frequently as the | |
806 formatted output functions. Partly, this is because it takes some care | |
807 to use them properly. Another reason is that it is difficult to recover | |
808 from a matching error. | |
809 | |
4167 | 810 @node Input Conversion Syntax |
3294 | 811 @subsection Input Conversion Syntax |
812 | |
813 A @code{scanf} template string is a string that contains ordinary | |
814 multibyte characters interspersed with conversion specifications that | |
815 start with @samp{%}. | |
816 | |
817 Any whitespace character in the template causes any number of whitespace | |
818 characters in the input stream to be read and discarded. The whitespace | |
819 characters that are matched need not be exactly the same whitespace | |
820 characters that appear in the template string. For example, write | |
821 @samp{ , } in the template to recognize a comma with optional whitespace | |
822 before and after. | |
823 | |
824 Other characters in the template string that are not part of conversion | |
825 specifications must match characters in the input stream exactly; if | |
826 this is not the case, a matching failure occurs. | |
827 | |
828 The conversion specifications in a @code{scanf} template string | |
829 have the general form: | |
830 | |
6670 | 831 @example |
3294 | 832 % @var{flags} @var{width} @var{type} @var{conversion} |
6670 | 833 @end example |
3294 | 834 |
835 In more detail, an input conversion specification consists of an initial | |
836 @samp{%} character followed in sequence by: | |
837 | |
838 @itemize @bullet | |
839 @item | |
840 An optional @dfn{flag character} @samp{*}, which says to ignore the text | |
841 read for this specification. When @code{scanf} finds a conversion | |
842 specification that uses this flag, it reads input as directed by the | |
843 rest of the conversion specification, but it discards this input, does | |
844 not return any value, and does not increment the count of | |
845 successful assignments. | |
846 @cindex flag character (@code{scanf}) | |
847 | |
848 @item | |
849 An optional decimal integer that specifies the @dfn{maximum field | |
850 width}. Reading of characters from the input stream stops either when | |
851 this maximum is reached or when a non-matching character is found, | |
852 whichever happens first. Most conversions discard initial whitespace | |
853 characters, and these discarded characters don't count towards the | |
854 maximum field width. Conversions that do not discard initial whitespace | |
855 are explicitly documented. | |
856 @cindex maximum field width (@code{scanf}) | |
857 | |
858 @item | |
859 An optional type modifier character. This character is ignored by | |
860 Octave's @code{scanf} function, but is recognized to provide | |
861 compatibility with the C language @code{scanf}. | |
862 | |
863 @item | |
864 A character that specifies the conversion to be applied. | |
865 @end itemize | |
866 | |
867 The exact options that are permitted and how they are interpreted vary | |
868 between the different conversion specifiers. See the descriptions of the | |
869 individual conversions for information about the particular options that | |
870 they allow. | |
871 | |
4167 | 872 @node Table of Input Conversions |
3294 | 873 @subsection Table of Input Conversions |
874 @cindex input conversions, for @code{scanf} | |
875 | |
876 Here is a table that summarizes the various conversion specifications: | |
877 | |
878 @table @asis | |
879 @item @samp{%d} | |
880 Matches an optionally signed integer written in decimal. @xref{Numeric | |
881 Input Conversions}. | |
882 | |
883 @item @samp{%i} | |
884 Matches an optionally signed integer in any of the formats that the C | |
885 language defines for specifying an integer constant. @xref{Numeric | |
886 Input Conversions}. | |
887 | |
888 @item @samp{%o} | |
889 Matches an unsigned integer written in octal radix. | |
890 @xref{Numeric Input Conversions}. | |
891 | |
892 @item @samp{%u} | |
893 Matches an unsigned integer written in decimal radix. | |
894 @xref{Numeric Input Conversions}. | |
895 | |
896 @item @samp{%x}, @samp{%X} | |
897 Matches an unsigned integer written in hexadecimal radix. | |
898 @xref{Numeric Input Conversions}. | |
899 | |
900 @item @samp{%e}, @samp{%f}, @samp{%g}, @samp{%E}, @samp{%G} | |
901 Matches an optionally signed floating-point number. @xref{Numeric Input | |
902 Conversions}. | |
903 | |
904 @item @samp{%s} | |
905 Matches a string containing only non-whitespace characters. | |
906 @xref{String Input Conversions}. | |
907 | |
908 @item @samp{%c} | |
909 Matches a string of one or more characters; the number of characters | |
910 read is controlled by the maximum field width given for the conversion. | |
911 @xref{String Input Conversions}. | |
912 | |
913 @item @samp{%%} | |
914 This matches a literal @samp{%} character in the input stream. No | |
915 corresponding argument is used. | |
916 @end table | |
917 | |
918 If the syntax of a conversion specification is invalid, the behavior is | |
919 undefined. If there aren't enough function arguments provided to supply | |
920 addresses for all the conversion specifications in the template strings | |
921 that perform assignments, or if the arguments are not of the correct | |
922 types, the behavior is also undefined. On the other hand, extra | |
923 arguments are simply ignored. | |
924 | |
4167 | 925 @node Numeric Input Conversions |
3294 | 926 @subsection Numeric Input Conversions |
927 | |
928 This section describes the @code{scanf} conversions for reading numeric | |
929 values. | |
930 | |
931 The @samp{%d} conversion matches an optionally signed integer in decimal | |
932 radix. | |
933 | |
934 The @samp{%i} conversion matches an optionally signed integer in any of | |
935 the formats that the C language defines for specifying an integer | |
936 constant. | |
937 | |
938 For example, any of the strings @samp{10}, @samp{0xa}, or @samp{012} | |
939 could be read in as integers under the @samp{%i} conversion. Each of | |
940 these specifies a number with decimal value @code{10}. | |
941 | |
942 The @samp{%o}, @samp{%u}, and @samp{%x} conversions match unsigned | |
943 integers in octal, decimal, and hexadecimal radices, respectively. | |
944 | |
945 The @samp{%X} conversion is identical to the @samp{%x} conversion. They | |
946 both permit either uppercase or lowercase letters to be used as digits. | |
947 | |
948 Unlike the C language @code{scanf}, Octave ignores the @samp{h}, | |
949 @samp{l}, and @samp{L} modifiers. | |
950 | |
4167 | 951 @node String Input Conversions |
3294 | 952 @subsection String Input Conversions |
953 | |
954 This section describes the @code{scanf} input conversions for reading | |
955 string and character values: @samp{%s} and @samp{%c}. | |
956 | |
957 The @samp{%c} conversion is the simplest: it matches a fixed number of | |
958 characters, always. The maximum field with says how many characters to | |
959 read; if you don't specify the maximum, the default is 1. This | |
960 conversion does not skip over initial whitespace characters. It reads | |
961 precisely the next @var{n} characters, and fails if it cannot get that | |
962 many. | |
963 | |
964 The @samp{%s} conversion matches a string of non-whitespace characters. | |
965 It skips and discards initial whitespace, but stops when it encounters | |
966 more whitespace after having read something. | |
967 | |
968 For example, reading the input: | |
969 | |
6670 | 970 @example |
3294 | 971 hello, world |
6670 | 972 @end example |
3294 | 973 |
974 @noindent | |
975 with the conversion @samp{%10c} produces @code{" hello, wo"}, but | |
976 reading the same input with the conversion @samp{%10s} produces | |
977 @code{"hello,"}. | |
978 | |
4167 | 979 @node Binary I/O |
3294 | 980 @subsection Binary I/O |
981 | |
982 Octave can read and write binary data using the functions @code{fread} | |
983 and @code{fwrite}, which are patterned after the standard C functions | |
6939 | 984 with the same names. They are able to automatically swap the byte order |
985 of integer data and convert among the supported floating point formats | |
3294 | 986 as the data are read. |
987 | |
3372 | 988 @DOCSTRING(fread) |
3294 | 989 |
3372 | 990 @DOCSTRING(fwrite) |
3294 | 991 |
4167 | 992 @node Temporary Files |
3294 | 993 @subsection Temporary Files |
994 | |
6666 | 995 Sometimes one needs to write data to a file that is only temporary. |
996 This is most commonly used when an external program launched from | |
997 within Octave needs to access data. When Octave exits all temporary | |
998 files will be deleted, so this step need not be executed manually. | |
999 | |
4328 | 1000 @DOCSTRING(mkstemp) |
1001 | |
1002 @DOCSTRING(tmpfile) | |
1003 | |
3372 | 1004 @DOCSTRING(tmpnam) |
3294 | 1005 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
1006 @node EOF and Errors, File Positioning, Temporary Files, C-Style I/O Functions |
3294 | 1007 @subsection End of File and Errors |
1008 | |
6666 | 1009 Once a file has been opened its status can be acquired. As an example |
1010 the @code{feof} functions determines if the end of the file has been | |
1011 reached. This can be very useful when reading small parts of a file | |
1012 at a time. The following example shows how to read one line at a time | |
1013 from a file until the end has been reached. | |
1014 | |
1015 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1016 @group |
6666 | 1017 filename = "myfile.txt"; |
1018 fid = fopen (filename, "r"); | |
1019 while (! feof (fid) ) | |
1020 text_line = fgetl (fid); | |
1021 endwhile | |
1022 fclose (fid); | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1023 @end group |
6666 | 1024 @end example |
1025 | |
1026 @noindent | |
1027 Note that in some situations it is more efficient to read the entire | |
1028 contents of a file and then process it, than it is to read it line by | |
1029 line. This has the potential advantage of removing the loop in the | |
1030 above code. | |
1031 | |
3372 | 1032 @DOCSTRING(feof) |
3294 | 1033 |
3372 | 1034 @DOCSTRING(ferror) |
3294 | 1035 |
8817
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
1036 @DOCSTRING(fclear) |
03b7f618ab3d
include docstrings for new functions in the manual
John W. Eaton <jwe@octave.org>
parents:
8569
diff
changeset
|
1037 |
3372 | 1038 @DOCSTRING(freport) |
3294 | 1039 |
4167 | 1040 @node File Positioning |
3294 | 1041 @subsection File Positioning |
1042 | |
1043 Three functions are available for setting and determining the position of | |
1044 the file pointer for a given file. | |
1045 | |
3372 | 1046 @DOCSTRING(ftell) |
1047 | |
1048 @DOCSTRING(fseek) | |
3294 | 1049 |
3372 | 1050 @DOCSTRING(SEEK_SET) |
3294 | 1051 |
3372 | 1052 @DOCSTRING(frewind) |
3294 | 1053 |
1054 The following example stores the current file position in the variable | |
1055 @code{marker}, moves the pointer to the beginning of the file, reads | |
1056 four characters, and then returns to the original position. | |
1057 | |
1058 @example | |
9209
923c7cb7f13f
Simplify TeXinfo files by eliminating redundant @iftex followed by @tex construction.
Rik <rdrider0-list@yahoo.com>
parents:
9039
diff
changeset
|
1059 @group |
3294 | 1060 marker = ftell (myfile); |
1061 frewind (myfile); | |
1062 fourch = fgets (myfile, 4); | |
1063 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
|
1064 @end group |
3294 | 1065 @end example |
1066 |