Namespace:
HDF5DotNet
Assembly:
HDF5DotNet (in HDF5DotNet.dll)
Syntax
Visual Basic |
---|
Public Shared Sub selectStridedHyperslab ( _
spaceId As H5DataSpaceId, _
selectOperator As H5S..::..SelectOperator, _
start As Long(), _
stride As Long(), _
count As Long() _
) |
Visual C++ |
---|
public:
static void selectStridedHyperslab(
H5DataSpaceId^ spaceId,
H5S..::..SelectOperator selectOperator,
array<long long>^ start,
array<long long>^ stride,
array<long long>^ count
) |
JavaScript |
---|
HDF5DotNet.H5S.selectStridedHyperslab = function(spaceId, selectOperator, start, stride, count); |
Parameters
- spaceId
- Type: HDF5DotNet..::..H5DataSpaceId
IN: Identifier of dataspace selection to modify
- selectOperator
- Type: HDF5DotNet..::..H5S..::..SelectOperator
IN: Operation to perform on current selection.
- start
- Type: array<Int64>[]()[][]
IN: Offset of start of hyperslab
- stride
- Type: array<Int64>[]()[][]
IN: Hyperslab stride.
- count
- Type: array<Int64>[]()[][]
IN: Number of blocks included in hyperslab.
Remarks
See Also