summaryrefslogtreecommitdiffstats
path: root/doc/html/H5.intro.html
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>1999-05-03 21:54:10 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>1999-05-03 21:54:10 (GMT)
commita3d84da7df8e3d4226eb937cbabd3384fabd2762 (patch)
tree8576203277e9ce7e64da91f858650917b326934b /doc/html/H5.intro.html
parent2ea07058c9fd49188d57b15699fbca05510b4da1 (diff)
downloadhdf5-a3d84da7df8e3d4226eb937cbabd3384fabd2762.zip
hdf5-a3d84da7df8e3d4226eb937cbabd3384fabd2762.tar.gz
hdf5-a3d84da7df8e3d4226eb937cbabd3384fabd2762.tar.bz2
[svn-r1244] Datatypes.html
DatatypesEnum.html EnumMap.gif Added enumeration datatypes -- First pass, only minimal editing. Intro paragraph in Datatypes.html; details in DatatypesEnum.html. EnumMap.gif is a figure for DatatypesEnum.html. Tools.html Added new h5toh4 supported object and data type. H5.intro.html Corrected transposed "start coordinates" in Example 1.
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 c3f7cb7..6c32ad7 100644
--- a/doc/html/H5.intro.html
+++ b/doc/html/H5.intro.html
@@ -696,7 +696,7 @@ the data is stored in another union of hyperslabs in the memory dataspace.
<FONT FACE="Times"><P>Four parameters are required to describe a completely general hyperslab. Each parameter is an array whose rank is the same as that of the dataspace:
<UL>
-</FONT><CODE><LI>start</CODE>: a starting location for the hyperslab. In the example <CODE>start</CODE> is (1,0).
+</FONT><CODE><LI>start</CODE>: a starting location for the hyperslab. In the example <CODE>start</CODE> is (0,1).
<CODE><LI>stride</CODE>: the number of elements to separate each element or block to be selected. In the example <CODE>stride</CODE><I> </I> is (4,3). If the stride parameter is set to NULL, the stride size defaults to 1 in each dimension.
<CODE><LI>count</CODE>: the number of elements or blocks to select along each dimension. In the example, <CODE>count</CODE> is (2,4).
<CODE><LI>block</CODE>: the size of the block selected from the dataspace. In the example, <CODE>block</CODE> is (3,2). If the block parameter is set to NULL, the block size defaults to a single element in each dimension, as if the block array was set to all 1s.</UL>