[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Creates a new simple dataspace and opens it for access.
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function create_simple ( _ rank As Integer, _ dims As ULong() _ ) As H5DataSpaceId |
| C# |
|---|
public static H5DataSpaceId create_simple ( int rank, ulong[] dims ) |
| C++ |
|---|
public: static H5DataSpaceId^ create_simple ( int rank, array<unsigned long long>^ dims ) |
Parameters
- rank (Int32)
- Number of dimensions of dataspace.
- dims (UInt64[]())
- An array of the size of each dimension.
Remarks
H5Screate_simple creates a new simple dataspace and opens it for access.
rank is the number of dimensions used in the dataspace.
The upper limit is the same as dims.
The dataspace identifier returned from this function must be released with H5Sclose or resource leaks will occur.