1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 5.2, http://www.gnu.org/software/texinfo/ -->
<head>
<title>GNU Octave: Binary I/O</title>
<meta name="description" content="GNU Octave: Binary I/O">
<meta name="keywords" content="GNU Octave: Binary I/O">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="index.html#Top" rel="start" title="Top">
<link href="Concept-Index.html#Concept-Index" rel="index" title="Concept Index">
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
<link href="C_002dStyle-I_002fO-Functions.html#C_002dStyle-I_002fO-Functions" rel="up" title="C-Style I/O Functions">
<link href="Temporary-Files.html#Temporary-Files" rel="next" title="Temporary Files">
<link href="String-Input-Conversions.html#String-Input-Conversions" rel="prev" title="String Input Conversions">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.indentedblock {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
div.smalldisplay {margin-left: 3.2em}
div.smallexample {margin-left: 3.2em}
div.smallindentedblock {margin-left: 3.2em; font-size: smaller}
div.smalllisp {margin-left: 3.2em}
kbd {font-style:oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: inherit; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: inherit; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.nocodebreak {white-space:nowrap}
span.nolinebreak {white-space:nowrap}
span.roman {font-family:serif; font-weight:normal}
span.sansserif {font-family:sans-serif; font-weight:normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Binary-I_002fO"></a>
<div class="header">
<p>
Next: <a href="Temporary-Files.html#Temporary-Files" accesskey="n" rel="next">Temporary Files</a>, Previous: <a href="String-Input-Conversions.html#String-Input-Conversions" accesskey="p" rel="prev">String Input Conversions</a>, Up: <a href="C_002dStyle-I_002fO-Functions.html#C_002dStyle-I_002fO-Functions" accesskey="u" rel="up">C-Style I/O Functions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
</div>
<hr>
<a name="Binary-I_002fO-1"></a>
<h4 class="subsection">14.2.16 Binary I/O</h4>
<p>Octave can read and write binary data using the functions <code>fread</code>
and <code>fwrite</code>, which are patterned after the standard C functions
with the same names. They are able to automatically swap the byte order
of integer data and convert among the supported floating point formats
as the data are read.
</p>
<a name="XREFfread"></a><dl>
<dt><a name="index-fread"></a>Built-in Function: <em>[<var>val</var>, <var>count</var>] =</em> <strong>fread</strong> <em>(<var>fid</var>, <var>size</var>, <var>precision</var>, <var>skip</var>, <var>arch</var>)</em></dt>
<dd><p>Read binary data of type <var>precision</var> from the specified file ID
<var>fid</var>.
</p>
<p>The optional argument <var>size</var> specifies the amount of data to read
and may be one of
</p>
<dl compact="compact">
<dt><code>Inf</code></dt>
<dd><p>Read as much as possible, returning a column vector.
</p>
</dd>
<dt><code><var>nr</var></code></dt>
<dd><p>Read up to <var>nr</var> elements, returning a column vector.
</p>
</dd>
<dt><code>[<var>nr</var>, Inf]</code></dt>
<dd><p>Read as much as possible, returning a matrix with <var>nr</var> rows. If the
number of elements read is not an exact multiple of <var>nr</var>, the last
column is padded with zeros.
</p>
</dd>
<dt><code>[<var>nr</var>, <var>nc</var>]</code></dt>
<dd><p>Read up to <code><var>nr</var> * <var>nc</var></code> elements, returning a matrix with
<var>nr</var> rows. If the number of elements read is not an exact multiple
of <var>nr</var>, the last column is padded with zeros.
</p></dd>
</dl>
<p>If <var>size</var> is omitted, a value of <code>Inf</code> is assumed.
</p>
<p>The optional argument <var>precision</var> is a string specifying the type of
data to read and may be one of
</p>
<dl compact="compact">
<dt><code>"schar"</code></dt>
<dt><code>"signed char"</code></dt>
<dd><p>Signed character.
</p>
</dd>
<dt><code>"uchar"</code></dt>
<dt><code>"unsigned char"</code></dt>
<dd><p>Unsigned character.
</p>
</dd>
<dt><code>"int8"</code></dt>
<dt><code>"integer*1"</code></dt>
<dd>
<p>8-bit signed integer.
</p>
</dd>
<dt><code>"int16"</code></dt>
<dt><code>"integer*2"</code></dt>
<dd><p>16-bit signed integer.
</p>
</dd>
<dt><code>"int32"</code></dt>
<dt><code>"integer*4"</code></dt>
<dd><p>32-bit signed integer.
</p>
</dd>
<dt><code>"int64"</code></dt>
<dt><code>"integer*8"</code></dt>
<dd><p>64-bit signed integer.
</p>
</dd>
<dt><code>"uint8"</code></dt>
<dd><p>8-bit unsigned integer.
</p>
</dd>
<dt><code>"uint16"</code></dt>
<dd><p>16-bit unsigned integer.
</p>
</dd>
<dt><code>"uint32"</code></dt>
<dd><p>32-bit unsigned integer.
</p>
</dd>
<dt><code>"uint64"</code></dt>
<dd><p>64-bit unsigned integer.
</p>
</dd>
<dt><code>"single"</code></dt>
<dt><code>"float32"</code></dt>
<dt><code>"real*4"</code></dt>
<dd><p>32-bit floating point number.
</p>
</dd>
<dt><code>"double"</code></dt>
<dt><code>"float64"</code></dt>
<dt><code>"real*8"</code></dt>
<dd><p>64-bit floating point number.
</p>
</dd>
<dt><code>"char"</code></dt>
<dt><code>"char*1"</code></dt>
<dd><p>Single character.
</p>
</dd>
<dt><code>"short"</code></dt>
<dd><p>Short integer (size is platform dependent).
</p>
</dd>
<dt><code>"int"</code></dt>
<dd><p>Integer (size is platform dependent).
</p>
</dd>
<dt><code>"long"</code></dt>
<dd><p>Long integer (size is platform dependent).
</p>
</dd>
<dt><code>"ushort"</code></dt>
<dt><code>"unsigned short"</code></dt>
<dd><p>Unsigned short integer (size is platform dependent).
</p>
</dd>
<dt><code>"uint"</code></dt>
<dt><code>"unsigned int"</code></dt>
<dd><p>Unsigned integer (size is platform dependent).
</p>
</dd>
<dt><code>"ulong"</code></dt>
<dt><code>"unsigned long"</code></dt>
<dd><p>Unsigned long integer (size is platform dependent).
</p>
</dd>
<dt><code>"float"</code></dt>
<dd><p>Single precision floating point number (size is platform dependent).
</p></dd>
</dl>
<p>The default precision is <code>"uchar"</code>.
</p>
<p>The <var>precision</var> argument may also specify an optional repeat
count. For example, ‘<samp>32*single</samp>’ causes <code>fread</code> to read
a block of 32 single precision floating point numbers. Reading in
blocks is useful in combination with the <var>skip</var> argument.
</p>
<p>The <var>precision</var> argument may also specify a type conversion.
For example, ‘<samp>int16=>int32</samp>’ causes <code>fread</code> to read 16-bit
integer values and return an array of 32-bit integer values. By
default, <code>fread</code> returns a double precision array. The special
form ‘<samp>*TYPE</samp>’ is shorthand for ‘<samp>TYPE=>TYPE</samp>’.
</p>
<p>The conversion and repeat counts may be combined. For example, the
specification ‘<samp>32*single=>single</samp>’ causes <code>fread</code> to read
blocks of single precision floating point values and return an array
of single precision values instead of the default array of double
precision values.
</p>
<p>The optional argument <var>skip</var> specifies the number of bytes to skip
after each element (or block of elements) is read. If it is not
specified, a value of 0 is assumed. If the final block read is not
complete, the final skip is omitted. For example,
</p>
<div class="example">
<pre class="example">fread (f, 10, "3*single=>single", 8)
</pre></div>
<p>will omit the final 8-byte skip because the last read will not be
a complete block of 3 values.
</p>
<p>The optional argument <var>arch</var> is a string specifying the data format
for the file. Valid values are
</p>
<dl compact="compact">
<dt><code><code>"native"</code></code></dt>
<dd><p>The format of the current machine.
</p>
</dd>
<dt><code>"ieee-be"</code></dt>
<dd><p>IEEE big endian.
</p>
</dd>
<dt><code>"ieee-le"</code></dt>
<dd><p>IEEE little endian.
</p></dd>
</dl>
<p>The data read from the file is returned in <var>val</var>, and the number of
values read is returned in <code>count</code>
</p>
<p><strong>See also:</strong> <a href="#XREFfwrite">fwrite</a>, <a href="Line_002dOriented-Input.html#XREFfgets">fgets</a>, <a href="Line_002dOriented-Input.html#XREFfgetl">fgetl</a>, <a href="Formatted-Input.html#XREFfscanf">fscanf</a>, <a href="Opening-and-Closing-Files.html#XREFfopen">fopen</a>.
</p></dd></dl>
<a name="XREFfwrite"></a><dl>
<dt><a name="index-fwrite"></a>Built-in Function: <em><var>count</var> =</em> <strong>fwrite</strong> <em>(<var>fid</var>, <var>data</var>, <var>precision</var>, <var>skip</var>, <var>arch</var>)</em></dt>
<dd><p>Write data in binary form of type <var>precision</var> to the specified file
ID <var>fid</var>, returning the number of values successfully written to the
file.
</p>
<p>The argument <var>data</var> is a matrix of values that are to be written to
the file. The values are extracted in column-major order.
</p>
<p>The remaining arguments <var>precision</var>, <var>skip</var>, and <var>arch</var> are
optional, and are interpreted as described for <code>fread</code>.
</p>
<p>The behavior of <code>fwrite</code> is undefined if the values in <var>data</var>
are too large to fit in the specified precision.
</p>
<p><strong>See also:</strong> <a href="#XREFfread">fread</a>, <a href="Simple-Output.html#XREFfputs">fputs</a>, <a href="Formatted-Output.html#XREFfprintf">fprintf</a>, <a href="Opening-and-Closing-Files.html#XREFfopen">fopen</a>.
</p></dd></dl>
<hr>
<div class="header">
<p>
Next: <a href="Temporary-Files.html#Temporary-Files" accesskey="n" rel="next">Temporary Files</a>, Previous: <a href="String-Input-Conversions.html#String-Input-Conversions" accesskey="p" rel="prev">String Input Conversions</a>, Up: <a href="C_002dStyle-I_002fO-Functions.html#C_002dStyle-I_002fO-Functions" accesskey="u" rel="up">C-Style I/O Functions</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html#Concept-Index" title="Index" rel="index">Index</a>]</p>
</div>
</body>
</html>
|