[svn-r1219] Dataspaces.html
Fixed Bug #292 -- Errors in array-order transversal (C and Fortran orders were reversed) and a minor copy edit.
This commit is contained in:
@@ -223,14 +223,14 @@ would look like this:
|
||||
<br><strong>Example 3: Non-contiguous selection with 1,1 offset</strong>
|
||||
</center>
|
||||
|
||||
<P>Selections also have an linearization ordering of the points selected
|
||||
<P>Selections also have a linearization ordering of the points selected
|
||||
(defaulting to "C" order, ie. last dimension changing fastest). The
|
||||
linearization order may be specified for each point or it may be chosen by
|
||||
the axis of the dataspace. For example, with the default "C" ordering,
|
||||
example 1's selected points are iterated through in this order: (1,1), (2,1),
|
||||
(3,1), (1,2), (2,2), etc. With "FORTRAN" ordering, example 1's selected points
|
||||
would be iterated through in this order: (1,1), (1,2), (1,3), (1,4), (1,5),
|
||||
(2,1), (2,2), etc.
|
||||
example 1's selected points are iterated through in this order: (1,1), (1,2),
|
||||
(1,3), (2,1), (2,2), etc. With "FORTRAN" ordering, example 1's selected points
|
||||
would be iterated through in this order: (1,1), (2,1), (3,1), (4,1), (5,1),
|
||||
(1,2), (2,2), etc.
|
||||
|
||||
<P>A dataspace may be stored in the file as a permanent object, to allow many
|
||||
datasets to use a commonly defined dataspace. Dataspaces with extendable
|
||||
|
||||
Reference in New Issue
Block a user