summaryrefslogtreecommitdiffstats
path: root/doc/html/H5.intro.html
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>1998-09-11 15:29:53 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>1998-09-11 15:29:53 (GMT)
commita3de842d90abd785913d6ed88c4e1aa34300f125 (patch)
tree66327cd86c462ff641602566855e30e52c4fe0a1 /doc/html/H5.intro.html
parent1e3bbd6cbe8994bc0a6e5f8a212b71901812e892 (diff)
downloadhdf5-a3de842d90abd785913d6ed88c4e1aa34300f125.zip
hdf5-a3de842d90abd785913d6ed88c4e1aa34300f125.tar.gz
hdf5-a3de842d90abd785913d6ed88c4e1aa34300f125.tar.bz2
[svn-r689] Fixed broken hyperlink.
Diffstat (limited to 'doc/html/H5.intro.html')
-rw-r--r--doc/html/H5.intro.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/html/H5.intro.html b/doc/html/H5.intro.html
index 8b130db..8dd217b 100644
--- a/doc/html/H5.intro.html
+++ b/doc/html/H5.intro.html
@@ -372,7 +372,7 @@ printf("rank %d, dimensions %d x %d \n", rank, dims_out[0], dims_out[1]);</PRE>
<P>In the previous discussion, we describe how to access an entire dataset with one write (or read) operation. HDF5 also supports access to portions (or selections) of a dataset in one read/write operation. Currently selections are limited to hyperslabs and the lists of independent points. Both types of selection will be discussed in the following sections. Several sample cases of selection reading/writing are shown on the following figure.
<B><P>&lt;&lt;&lt; Insert dataspace figure here. (If you see this
note, check the copy of this <i>Introduction</i> at
-<a href="http://hdf.ncsa.uiuc.edu/HDF5/H5.intro.html</a>http://hdf.ncsa.uiuc.edu/HDF5/H5.intro.html</a> to see the figure.) &gt;&gt;&gt;
+<a href="http://hdf.ncsa.uiuc.edu/HDF5/H5.intro.html">http://hdf.ncsa.uiuc.edu/HDF5/H5.intro.html</a> to see the figure.) &gt;&gt;&gt;
</B><P>In example (a) a single hyperslab is read from the midst of a 2-D array in a file and stored in the corner of a smaller 2-D array in memory. In (b) a regular series of blocks is read from a 2-D array in the file and stored as a contiguous sequence of values at a certain offset in a 1-D array in memory. In (c) a sequence of points with no regular pattern is read from a 2-D array in a file and stored as a sequence of points with no regular pattern in a 3-D array in memory.
<P>As these examples illustrate, whenever we perform partial read/write operations on the data, the following information must be provided: file dataspace, file dataspace selection, memory dataspace and memory dataspace selection. After the required information is specified, actual read/write operation on the portion of data is done in a single call to the HDF5 read/write functions H5Dread(write).
<H5><A NAME="_Toc429885317">Selecting hyperslabs</A></H5>