首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

mingw+cmake+QT+hdf5库

后端 24.22MB 18 需要积分: 1
立即下载

资源介绍:

mingw+cmake+QT+hdf5库
HDF5 version 1.8.18 released on 2016-11-14 ================================================================================ INTRODUCTION ============ This document describes the differences between HDF5-1.8.17 and HDF5-1.8.18, and contains information on the platforms tested and known problems in HDF5-1.8.18. For more details, see the files HISTORY-1_0-1_8_0_rc3.txt and HISTORY-1_8.txt in the release_docs/ directory of the HDF5 source. Links to the HDF5 1.8.18 source code, documentation, and additional materials can be found on the HDF5 web page at: https://support.hdfgroup.org/HDF5/ The HDF5 1.8.18 release can be obtained from: https://support.hdfgroup.org/HDF5/release/obtain518.html User documentation for 1.8.18 can be accessed directly at this location: https://support.hdfgroup.org/HDF5/doc1.8/ New features in the HDF5-1.8.x release series, including brief general descriptions of some new and modified APIs, are described in the "What's New in 1.8.0?" document: https://support.hdfgroup.org/HDF5/doc/ADGuide/WhatsNew180.html All new and modified APIs are listed in detail in the "HDF5 Software Changes from Release to Release" document, in the section "Release 1.8.18 (current release) versus Release 1.8.17 https://support.hdfgroup.org/HDF5/doc1.8/ADGuide/Changes.html If you have any questions or comments, please send them to the HDF Help Desk: help@hdfgroup.org CONTENTS ======== - New Features - Support for New Platforms, Languages, and Compilers - Bug Fixes since HDF5-1.8.17 - Supported Platforms - Supported Configuration Features Summary - More Tested Platforms - Known Problems New Features ============ Configuration ------------- - CMake: Added NAMESPACE hdf5:: to package configuration files to allow projects using installed HDF5 binaries built with CMake to link with them without specifying the HDF5 library location via IMPORTED_LOCATION. (ADB, 2016/10/17, HDFFV-10003) - CMake: Changed the CTEST_BUILD_CONFIGURATION option to CTEST_CONFIGURATION_TYPE as recommended by the CMake documentation. (ADB, 2016/10/17, HDFFV-9971) - CMake: Added support for GIT (ADB, 2016/07/12) Library ------- - None Parallel Library ---------------- - None Tools ----- - None High-Level APIs --------------- - None Fortran API ----------- - None C++ API ------- - None Support for New Platforms, Languages, and Compilers =================================================== Bug Fixes since HDF5-1.8.17 =========================== Configuration ------------- - Fixed a problem preventing HDF5 to be built on 32-bit CYGWIN by condensing cygwin configuration files into a single file and removing outdated compiler settings. (ABD, 2016/07/12, HDFFV-9946) - CMake: Fixed a command length overflow error by converting custom commands inside CMakeTest.cmake files into regular dependencies and targets. (ABD, 2016/07/12, HDFFV-9939) - CMake: Fixed a timeout error that would occasionally occur when running the virtual file driver tests simultaneously due to test directory and file name collisions. (ABD, 2016/09/19, HDFFV-9431) Library ------- - Fixed a memory leak that would occur when the library allocated memory for an external file prefix (H5Pset_efile_prefix) and failed to free it. (DER, 2016/04/29) - Fixed an error that would occur when calling H5Adelete on an attribute which is attached to an externally linked object in the target file and whose datatype is a committed datatype in the main file. (VC, 2016-07-04, HDFFV-9940) - Fixed a problem where a plugin compiled into a DLL in the default plugin directory could not be found by the HDF5 library at runtime on Windows when the HDF5_PLUGIN_PATH environment variable was not set. (ABD, 2016/08/01, HDFFV-9706) - Fixed an issue where H5Pset_alignment could result in misaligned blocks with some input combinations, causing an assertion failure in debug mode. (NAF, 2016/08/11, HDFFV-9948) - A number of issues were fixed when reading/writing from/to corrupted files to ensure that the library fails gracefully in these cases: * Writing to a corrupted file that has an object message which is incorrectly marked as sharable on disk results in a buffer overflow / invalid write instead of a clean error message. * Decoding data from a corrupted file with a dataset encoded with the H5Z_NBIT decoding can result in a code execution vulnerability under the context of the application using the HDF5 library. * When decoding an array datatype from a corrupted file, the HDF5 library fails to return an error in production if the number of dimensions decoded is greater than the maximum rank. * When decoding an "old style" array datatype from a corrupted file, the HDF5 library fails to return an error in production if the number of dimensions decoded is greater than the maximum rank. (NAF, 2016/10/06, HDFFV-9950, HDFFV-9951, HDFFV-9992, HDFFV-9993) - Fixed an error that would occur when copying an object with an attribute which is a compound datatype consisting of a variable length string. (VC, 2016-10-17, HDFFV-7991) Parallel Library ---------------- - Fixed a bug that could occur when allocating a chunked dataset in parallel with an alignment set and an alignment threshold greater than the chunk size but less than or equal to the raw data aggregator size. (NAF, 2016/08/11, HDFFV-9969) Performance ------------- - None Tools ----- - Fixed an error in the compiler wrapper scripts (h5cc, h5fc, et al.) in which they would erroneously drop the file argument specified via the -o flag when the -o flag was specified before the -c flag on the command line, resulting in a failure to compile. (LRK, 2016/06/08, HDFFV-9938, HDFFV-9530) - h5repack User Defined (UD) filter parameters were not parsed correctly. The UD filter parameters were not being parsed correctly. Reworked coding section to parse the correct values and verify number of parameters. (ADB, 2016/10/19, HDFFV-9996, HDFFV-9974, HDFFV-9515, HDFFV-9039) Fortran API ----------- - Fortran library fails to compile and fails tests with NAG compiler. * Removed the non-standard assumption that KIND=SIZEOF, in the HDF5 configure programs. * Removed Fortran 66 character/integer conversions from tests. * Removed the use of C_SIZEOF in the test programs * Changed to using STORAGE_SIZE in the test programs if available. Otherwise, uses C_SIZEOF or SIZEOF. (MSB, 2016/9/22, HDFFV-9973) - Fortran segfaults for F03 tests with NAG compiler * Removed INTENT(OUT) from 'fillvalue' in F2003 interface for H5Pget_fill_value_f. (MSB, 2016/9/22, HDFFV-9980) C++ API ------- - The macro H5_NO_NAMESPACE is deprecated from the HDF5 C++ API library. In future releases, the macros H5_NO_STD and OLD_HEADER_FILENAME may also be removed. (BMR, 2016/10/27, HDFFV-9532) High-Level APIs: --------------- - The high-level API Packet Table (PT) did not write data correctly when the datatype is a compound type that has string type as one of the members. This problem started in 1.8.15, after the fix of HDFFV-9042 was applied,

资源文件列表:

HDF5.zip 大约有639个文件
  1. 1.8.18/
  2. 1.8.18/bin/
  3. 1.8.18/bin/gif2h5.exe 2.79MB
  4. 1.8.18/bin/h52gif.exe 2.79MB
  5. 1.8.18/bin/h5copy.exe 2.74MB
  6. 1.8.18/bin/h5debug.exe 2.65MB
  7. 1.8.18/bin/h5diff.exe 2.83MB
  8. 1.8.18/bin/h5dump.exe 2.85MB
  9. 1.8.18/bin/h5import.exe 2.79MB
  10. 1.8.18/bin/h5jam.exe 2.74MB
  11. 1.8.18/bin/h5ls.exe 2.77MB
  12. 1.8.18/bin/h5mkgrp.exe 2.73MB
  13. 1.8.18/bin/h5repack.exe 2.81MB
  14. 1.8.18/bin/h5repart.exe 2.61MB
  15. 1.8.18/bin/h5stat.exe 2.75MB
  16. 1.8.18/bin/h5unjam.exe 2.73MB
  17. 1.8.18/bin/hdf5.dll 2.71MB
  18. 1.8.18/bin/hdf5.pdb 5.11MB
  19. 1.8.18/bin/hdf5_cpp.dll 447KB
  20. 1.8.18/bin/hdf5_cpp.pdb 1.91MB
  21. 1.8.18/bin/hdf5_f90cstub.dll 133KB
  22. 1.8.18/bin/hdf5_f90cstub.pdb 828KB
  23. 1.8.18/bin/hdf5_fortran.dll 186.5KB
  24. 1.8.18/bin/hdf5_hl.dll 140KB
  25. 1.8.18/bin/hdf5_hl.pdb 580KB
  26. 1.8.18/bin/hdf5_hl_cpp.dll 29.5KB
  27. 1.8.18/bin/hdf5_hl_cpp.pdb 308KB
  28. 1.8.18/bin/hdf5_hl_f90cstub.dll 52.5KB
  29. 1.8.18/bin/hdf5_hl_f90cstub.pdb 452KB
  30. 1.8.18/bin/hdf5_hl_fortran.dll 64.5KB
  31. 1.8.18/bin/hdf5_tools.dll 233.5KB
  32. 1.8.18/bin/hdf5_tools.pdb 724KB
  33. 1.8.18/bin/msvcp120.dll 644.66KB
  34. 1.8.18/bin/msvcr120.dll 940.66KB
  35. 1.8.18/bin/szip.dll 75KB
  36. 1.8.18/bin/zlib.dll 107.5KB
  37. 1.8.18/cmake/
  38. 1.8.18/cmake/hdf5-config-version.cmake 1.97KB
  39. 1.8.18/cmake/hdf5-config.cmake 7.72KB
  40. 1.8.18/cmake/hdf5-targets-relwithdebinfo.cmake 16.33KB
  41. 1.8.18/cmake/hdf5-targets.cmake 10.84KB
  42. 1.8.18/cmake/szip-config-version.cmake 850B
  43. 1.8.18/cmake/szip-config.cmake 3.39KB
  44. 1.8.18/cmake/szip-targets-relwithdebinfo.cmake 1.35KB
  45. 1.8.18/cmake/szip-targets.cmake 3.25KB
  46. 1.8.18/cmake/zlib-config-version.cmake 858B
  47. 1.8.18/cmake/zlib-config.cmake 3.34KB
  48. 1.8.18/cmake/zlib-targets-relwithdebinfo.cmake 1.35KB
  49. 1.8.18/cmake/zlib-targets.cmake 3.23KB
  50. 1.8.18/COPYING 783B
  51. 1.8.18/HDF518_Examples.cmake 8.48KB
  52. 1.8.18/HDF5Examples/
  53. 1.8.18/HDF5Examples/C/
  54. 1.8.18/HDF5Examples/C/CMakeLists.txt 555B
  55. 1.8.18/HDF5Examples/C/H5D/
  56. 1.8.18/HDF5Examples/C/H5D/CMakeLists.txt 3.05KB
  57. 1.8.18/HDF5Examples/C/H5D/h5ex_d_alloc.c 4.69KB
  58. 1.8.18/HDF5Examples/C/H5D/h5ex_d_checksum.c 5.7KB
  59. 1.8.18/HDF5Examples/C/H5D/h5ex_d_chunk.c 5.69KB
  60. 1.8.18/HDF5Examples/C/H5D/h5ex_d_compact.c 3.5KB
  61. 1.8.18/HDF5Examples/C/H5D/h5ex_d_extern.c 3.44KB
  62. 1.8.18/HDF5Examples/C/H5D/h5ex_d_fillval.c 4.36KB
  63. 1.8.18/HDF5Examples/C/H5D/h5ex_d_gzip.c 5.15KB
  64. 1.8.18/HDF5Examples/C/H5D/h5ex_d_hyper.c 4.73KB
  65. 1.8.18/HDF5Examples/C/H5D/h5ex_d_nbit.c 5.48KB
  66. 1.8.18/HDF5Examples/C/H5D/h5ex_d_rdwr.c 2.61KB
  67. 1.8.18/HDF5Examples/C/H5D/h5ex_d_shuffle.c 6.18KB
  68. 1.8.18/HDF5Examples/C/H5D/h5ex_d_sofloat.c 5.96KB
  69. 1.8.18/HDF5Examples/C/H5D/h5ex_d_soint.c 5.23KB
  70. 1.8.18/HDF5Examples/C/H5D/h5ex_d_szip.c 5.14KB
  71. 1.8.18/HDF5Examples/C/H5D/h5ex_d_transform.c 4.22KB
  72. 1.8.18/HDF5Examples/C/H5D/h5ex_d_unlimadd.c 6.45KB
  73. 1.8.18/HDF5Examples/C/H5D/h5ex_d_unlimgzip.c 8.48KB
  74. 1.8.18/HDF5Examples/C/H5D/h5ex_d_unlimmod.c 5.77KB
  75. 1.8.18/HDF5Examples/C/H5D/makefile.am 2.19KB
  76. 1.8.18/HDF5Examples/C/H5D/makefile.in 37.89KB
  77. 1.8.18/HDF5Examples/C/H5D/maketestref.sh 1.76KB
  78. 1.8.18/HDF5Examples/C/H5D/test.sh.in 2.78KB
  79. 1.8.18/HDF5Examples/C/H5D/testfiles/
  80. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_alloc.ddl 597B
  81. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_alloc.tst 426B
  82. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_checksum.ddl 12.64KB
  83. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_checksum.tst 70B
  84. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_chunk.ddl 401B
  85. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_chunk.tst 806B
  86. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_compact.ddl 323B
  87. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_compact.tst 178B
  88. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_extern.ddl 322B
  89. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_extern.tst 181B
  90. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_fillval.ddl 504B
  91. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_fillval.tst 631B
  92. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_gzip.ddl 12.64KB
  93. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_gzip.tst 67B
  94. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_hyper.ddl 401B
  95. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_hyper.tst 764B
  96. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_nbit.ddl 12.65KB
  97. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_nbit.tst 64B
  98. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_rdwr.ddl 320B
  99. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_rdwr.tst 138B
  100. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_shuffle.ddl 12.64KB
  101. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_shuffle.tst 109B
  102. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_sofloat.ddl 22.64KB
  103. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_sofloat.tst 202B
  104. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_soint.ddl 12.64KB
  105. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_soint.tst 71B
  106. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_szip.ddl 12.64KB
  107. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_szip.tst 64B
  108. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_transform.ddl 87B
  109. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_transform.tst 524B
  110. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_unlimadd.ddl 473B
  111. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_unlimadd.tst 457B
  112. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_unlimgzip.ddl 474B
  113. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_unlimgzip.tst 493B
  114. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_unlimmod.ddl 465B
  115. 1.8.18/HDF5Examples/C/H5D/testfiles/h5ex_d_unlimmod.tst 457B
  116. 1.8.18/HDF5Examples/C/H5G/
  117. 1.8.18/HDF5Examples/C/H5G/CMakeLists.txt 8.06KB
  118. 1.8.18/HDF5Examples/C/H5G/h5ex_g_compact.c 3.86KB
  119. 1.8.18/HDF5Examples/C/H5G/h5ex_g_corder.c 3.98KB
  120. 1.8.18/HDF5Examples/C/H5G/h5ex_g_create.c 1018B
  121. 1.8.18/HDF5Examples/C/H5G/h5ex_g_intermediate.c 2.73KB
  122. 1.8.18/HDF5Examples/C/H5G/h5ex_g_iterate.c 1.92KB
  123. 1.8.18/HDF5Examples/C/H5G/h5ex_g_iterate.h5 2.86KB
  124. 1.8.18/HDF5Examples/C/H5G/h5ex_g_phase.c 4.2KB
  125. 1.8.18/HDF5Examples/C/H5G/h5ex_g_traverse.c 5.65KB
  126. 1.8.18/HDF5Examples/C/H5G/h5ex_g_traverse.h5 6.16KB
  127. 1.8.18/HDF5Examples/C/H5G/h5ex_g_visit.c 3.2KB
  128. 1.8.18/HDF5Examples/C/H5G/h5ex_g_visit.h5 6.16KB
  129. 1.8.18/HDF5Examples/C/H5G/makefile.am 1.39KB
  130. 1.8.18/HDF5Examples/C/H5G/makefile.in 32.57KB
  131. 1.8.18/HDF5Examples/C/H5G/maketestref.sh 1.58KB
  132. 1.8.18/HDF5Examples/C/H5G/test.sh.in 4.27KB
  133. 1.8.18/HDF5Examples/C/H5G/testfiles/
  134. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_compact.tst 250B
  135. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_compact1.ddl 71B
  136. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_compact2.ddl 71B
  137. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_corder.tst 196B
  138. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_create.ddl 69B
  139. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_intermediate.tst 85B
  140. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_iterate.tst 85B
  141. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_phase.tst 718B
  142. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_traverse.tst 558B
  143. 1.8.18/HDF5Examples/C/H5G/testfiles/h5ex_g_visit.tst 511B
  144. 1.8.18/HDF5Examples/C/H5T/
  145. 1.8.18/HDF5Examples/C/H5T/CMakeLists.txt 5.13KB
  146. 1.8.18/HDF5Examples/C/H5T/h5ex_t_array.c 4.84KB
  147. 1.8.18/HDF5Examples/C/H5T/h5ex_t_arrayatt.c 5.15KB
  148. 1.8.18/HDF5Examples/C/H5T/h5ex_t_bit.c 4.14KB
  149. 1.8.18/HDF5Examples/C/H5T/h5ex_t_bitatt.c 4.44KB
  150. 1.8.18/HDF5Examples/C/H5T/h5ex_t_cmpd.c 5.37KB
  151. 1.8.18/HDF5Examples/C/H5T/h5ex_t_cmpdatt.c 5.7KB
  152. 1.8.18/HDF5Examples/C/H5T/h5ex_t_commit.c 3.3KB
  153. 1.8.18/HDF5Examples/C/H5T/h5ex_t_convert.c 5KB
  154. 1.8.18/HDF5Examples/C/H5T/h5ex_t_cpxcmpd.c 11.72KB
  155. 1.8.18/HDF5Examples/C/H5T/h5ex_t_cpxcmpdatt.c 12.1KB
  156. 1.8.18/HDF5Examples/C/H5T/h5ex_t_enum.c 4.93KB
  157. 1.8.18/HDF5Examples/C/H5T/h5ex_t_enumatt.c 5.27KB
  158. 1.8.18/HDF5Examples/C/H5T/h5ex_t_float.c 3.66KB
  159. 1.8.18/HDF5Examples/C/H5T/h5ex_t_floatatt.c 4.01KB
  160. 1.8.18/HDF5Examples/C/H5T/h5ex_t_int.c 3.58KB
  161. 1.8.18/HDF5Examples/C/H5T/h5ex_t_intatt.c 3.91KB
  162. 1.8.18/HDF5Examples/C/H5T/h5ex_t_objref.c 4.69KB
  163. 1.8.18/HDF5Examples/C/H5T/h5ex_t_objrefatt.c 5.04KB
  164. 1.8.18/HDF5Examples/C/H5T/h5ex_t_opaque.c 4.04KB
  165. 1.8.18/HDF5Examples/C/H5T/h5ex_t_opaqueatt.c 4.37KB
  166. 1.8.18/HDF5Examples/C/H5T/h5ex_t_regref.c 6.03KB
  167. 1.8.18/HDF5Examples/C/H5T/h5ex_t_regrefatt.c 6.38KB
  168. 1.8.18/HDF5Examples/C/H5T/h5ex_t_string.c 4.05KB
  169. 1.8.18/HDF5Examples/C/H5T/h5ex_t_stringatt.c 4.39KB
  170. 1.8.18/HDF5Examples/C/H5T/h5ex_t_vlen.c 4.42KB
  171. 1.8.18/HDF5Examples/C/H5T/h5ex_t_vlenatt.c 4.75KB
  172. 1.8.18/HDF5Examples/C/H5T/h5ex_t_vlstring.c 3.73KB
  173. 1.8.18/HDF5Examples/C/H5T/h5ex_t_vlstringatt.c 4.06KB
  174. 1.8.18/HDF5Examples/C/H5T/makefile.am 2.93KB
  175. 1.8.18/HDF5Examples/C/H5T/makefile.in 43.38KB
  176. 1.8.18/HDF5Examples/C/H5T/maketestref.sh 2.09KB
  177. 1.8.18/HDF5Examples/C/H5T/test.sh.in 3.08KB
  178. 1.8.18/HDF5Examples/C/H5T/testfiles/
  179. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_array.ddl 549B
  180. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_array.tst 344B
  181. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_arrayatt.ddl 710B
  182. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_arrayatt.tst 340B
  183. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_bit.ddl 394B
  184. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_bit.tst 394B
  185. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_bitatt.ddl 531B
  186. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_bitatt.tst 393B
  187. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cmpd.ddl 953B
  188. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cmpd.tst 509B
  189. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cmpdatt.ddl 1.15KB
  190. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cmpdatt.tst 505B
  191. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_commit.ddl 379B
  192. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_commit.tst 125B
  193. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_convert.tst 521B
  194. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cpxcmpd.ddl 174B
  195. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cpxcmpd.tst 234B
  196. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cpxcmpdatt.ddl 177B
  197. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_cpxcmpdatt.tst 232B
  198. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_enum.ddl 575B
  199. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_enum.tst 222B
  200. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_enumatt.ddl 730B
  201. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_enumatt.tst 221B
  202. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_float.ddl 404B
  203. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_float.tst 222B
  204. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_floatatt.ddl 541B
  205. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_floatatt.tst 221B
  206. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_int.ddl 319B
  207. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_int.tst 138B
  208. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_intatt.ddl 456B
  209. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_intatt.tst 137B
  210. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_objref.ddl 365B
  211. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_objref.tst 53B
  212. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_objrefatt.ddl 493B
  213. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_objrefatt.tst 51B
  214. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_opaque.ddl 328B
  215. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_opaque.tst 112B
  216. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_opaqueatt.ddl 465B
  217. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_opaqueatt.tst 107B
  218. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_regref.ddl 764B
  219. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_regref.tst 60B
  220. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_regrefatt.ddl 915B
  221. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_regrefatt.tst 58B
  222. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_string.ddl 345B
  223. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_string.tst 66B
  224. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_stringatt.ddl 488B
  225. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_stringatt.tst 62B
  226. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlen.ddl 246B
  227. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlen.tst 82B
  228. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlenatt.ddl 374B
  229. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlenatt.tst 80B
  230. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlstring.ddl 356B
  231. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlstring.tst 66B
  232. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlstringatt.ddl 499B
  233. 1.8.18/HDF5Examples/C/H5T/testfiles/h5ex_t_vlstringatt.tst 62B
  234. 1.8.18/HDF5Examples/C/makefile.am 899B
  235. 1.8.18/HDF5Examples/C/makefile.in 17.63KB
  236. 1.8.18/HDF5Examples/C/Performance/
  237. 1.8.18/HDF5Examples/C/Performance/CMakeLists.txt 2.37KB
  238. 1.8.18/HDF5Examples/C/Performance/h5efc.c 3.02KB
  239. 1.8.18/HDF5Examples/C/Performance/h5slab.h 933B
  240. 1.8.18/HDF5Examples/C/Performance/h5slabread.c 1.58KB
  241. 1.8.18/HDF5Examples/C/Performance/h5slabwrite.c 4.42KB
  242. 1.8.18/HDF5Examples/C/Performance/makefile.am 276B
  243. 1.8.18/HDF5Examples/CMakeLists.txt 14.55KB
  244. 1.8.18/HDF5Examples/config/
  245. 1.8.18/HDF5Examples/config/cmake/
  246. 1.8.18/HDF5Examples/config/cmake/cacheinit.cmake 811B
  247. 1.8.18/HDF5Examples/config/cmake/CTestCustom.cmake 310B
  248. 1.8.18/HDF5Examples/config/cmake/FindMPI.cmake 30.46KB
  249. 1.8.18/HDF5Examples/config/cmake/FindSZIP.cmake 6.62KB
  250. 1.8.18/HDF5Examples/config/cmake/grepTest.cmake 2.29KB
  251. 1.8.18/HDF5Examples/config/cmake/HDF5Macros.cmake 1.33KB
  252. 1.8.18/HDF5Examples/config/cmake/HDF5UseFortran.cmake 6.06KB
  253. 1.8.18/HDF5Examples/config/cmake/HDFMacros.cmake 11.17KB
  254. 1.8.18/HDF5Examples/config/cmake/README.txt.cmake.in 2.92KB
  255. 1.8.18/HDF5Examples/config/cmake/runTest.cmake 7.53KB
  256. 1.8.18/HDF5Examples/CTestConfig.cmake 1.28KB
  257. 1.8.18/HDF5Examples/FORTRAN/
  258. 1.8.18/HDF5Examples/FORTRAN/CMakeLists.txt 488B
  259. 1.8.18/HDF5Examples/FORTRAN/H5D/
  260. 1.8.18/HDF5Examples/FORTRAN/H5D/CMakeLists.txt 5.11KB
  261. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_alloc.f90 4.73KB
  262. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_checksum.f90 5.21KB
  263. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_chunk.f90 4.99KB
  264. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_compact.f90 3.31KB
  265. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_extern.f90 3.91KB
  266. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_fillval.f90 4.17KB
  267. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_gzip.f90 5.17KB
  268. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_hyper.f90 4.13KB
  269. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_nbit.f90 5.15KB
  270. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_rdwr.f90 2.51KB
  271. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_rdwr_kind_F03.f90 4.11KB
  272. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_soint.f90 5.38KB
  273. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_szip.f90 4.94KB
  274. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_transform.f90 3.96KB
  275. 1.8.18/HDF5Examples/FORTRAN/H5D/h5ex_d_unlimmod.f90 5.08KB
  276. 1.8.18/HDF5Examples/FORTRAN/H5D/makefile.am 2.41KB
  277. 1.8.18/HDF5Examples/FORTRAN/H5D/makefile.in 34.61KB
  278. 1.8.18/HDF5Examples/FORTRAN/H5D/maketestref.sh 1.84KB
  279. 1.8.18/HDF5Examples/FORTRAN/H5D/test.sh.in 3.38KB
  280. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/
  281. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_alloc.ddl 679B
  282. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_alloc.tst 438B
  283. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_checksum.ddl 12.87KB
  284. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_checksum.tst 79B
  285. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_chunk.ddl 429B
  286. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_chunk.tst 684B
  287. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_compact.ddl 365B
  288. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_compact.tst 160B
  289. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_extern.ddl 364B
  290. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_extern.tst 157B
  291. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_fillval.ddl 560B
  292. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_fillval.tst 525B
  293. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_gzip.ddl 12.74KB
  294. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_gzip.tst 76B
  295. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_hyper.ddl 429B
  296. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_hyper.tst 645B
  297. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_rdwr.ddl 362B
  298. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_rdwr.tst 120B
  299. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_rdwr_kind_F03.ddl 692B
  300. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_rdwr_kind_F03.tst 350B
  301. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_transform.ddl 87B
  302. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_transform.tst 446B
  303. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_unlimmod.ddl 521B
  304. 1.8.18/HDF5Examples/FORTRAN/H5D/testfiles/h5ex_d_unlimmod.tst 381B
  305. 1.8.18/HDF5Examples/FORTRAN/H5G/
  306. 1.8.18/HDF5Examples/FORTRAN/H5G/CMakeLists.txt 8.96KB
  307. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_compact.f90 4.13KB
  308. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_corder.f90 3.28KB
  309. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_create.f90 1.01KB
  310. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_iterate.h5 2.86KB
  311. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_iterate_F03.f90 2.69KB
  312. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_phase.f90 4.18KB
  313. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_traverse.h5 6.16KB
  314. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_traverse_F03.f90 6.45KB
  315. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_visit.h5 6.16KB
  316. 1.8.18/HDF5Examples/FORTRAN/H5G/h5ex_g_visit_F03.f90 2.83KB
  317. 1.8.18/HDF5Examples/FORTRAN/H5G/makefile.am 1.99KB
  318. 1.8.18/HDF5Examples/FORTRAN/H5G/makefile.in 32.12KB
  319. 1.8.18/HDF5Examples/FORTRAN/H5G/maketestref.sh 1.58KB
  320. 1.8.18/HDF5Examples/FORTRAN/H5G/test.sh.in 4.06KB
  321. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/
  322. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_compact1.ddl 71B
  323. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_compact2.ddl 71B
  324. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_corder.tst 200B
  325. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_create.ddl 69B
  326. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_iterate_F03.tst 81B
  327. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_phase.tst 746B
  328. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_traverse_F03.tst 558B
  329. 1.8.18/HDF5Examples/FORTRAN/H5G/testfiles/h5ex_g_visit_F03.tst 213B
  330. 1.8.18/HDF5Examples/FORTRAN/H5T/
  331. 1.8.18/HDF5Examples/FORTRAN/H5T/CMakeLists.txt 6.65KB
  332. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_array_F03.f90 3.87KB
  333. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_arrayatt_F03.f90 4.17KB
  334. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_bit_F03.f90 3.55KB
  335. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_bitatt_F03.f90 3.94KB
  336. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_cmpd_F03.f90 5.28KB
  337. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_cmpdatt_F03.f90 5.71KB
  338. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_enum_F03.f90 4.38KB
  339. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_enumatt_F03.f90 4.77KB
  340. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_float_F03.f90 3.19KB
  341. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_floatatt_F03.f90 3.58KB
  342. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_int_F03.f90 2.91KB
  343. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_intatt_F03.f90 3.35KB
  344. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_objref_F03.f90 4.16KB
  345. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_objrefatt_F03.f90 4.57KB
  346. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_opaque_F03.f90 3.35KB
  347. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_opaqueatt_F03.f90 3.74KB
  348. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_regref_F03.f90 5.42KB
  349. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_regrefatt_F03.f90 5.83KB
  350. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_string_F03.f90 3.22KB
  351. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_stringC_F03.f90 3.55KB
  352. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_stringCatt_F03.f90 3.81KB
  353. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_vlen_F03.f90 4.26KB
  354. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_vlenatt_F03.f90 4.51KB
  355. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_vlstring.f90 3.04KB
  356. 1.8.18/HDF5Examples/FORTRAN/H5T/h5ex_t_vlstring_F03.f90 3.64KB
  357. 1.8.18/HDF5Examples/FORTRAN/H5T/makefile.am 4.44KB
  358. 1.8.18/HDF5Examples/FORTRAN/H5T/makefile.in 48.88KB
  359. 1.8.18/HDF5Examples/FORTRAN/H5T/maketestref.sh 2.3KB
  360. 1.8.18/HDF5Examples/FORTRAN/H5T/test.sh.in 3.34KB
  361. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/
  362. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_array_F03.ddl 657B
  363. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_array_F03.tst 288B
  364. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_arrayatt_F03.ddl 842B
  365. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_arrayatt_F03.tst 284B
  366. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_bit_F03.ddl 440B
  367. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_bit_F03.tst 338B
  368. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_bitatt_F03.ddl 586B
  369. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_bitatt_F03.tst 337B
  370. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_cmpd_F03.ddl 1.18KB
  371. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_cmpd_F03.tst 490B
  372. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_cmpdatt_F03.ddl 1.41KB
  373. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_cmpdatt_F03.tst 486B
  374. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_enum_F03.ddl 621B
  375. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_enum_F03.tst 250B
  376. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_enumatt_F03.ddl 785B
  377. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_enumatt_F03.tst 249B
  378. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_float_F03.ddl 450B
  379. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_float_F03.tst 314B
  380. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_floatatt_F03.ddl 596B
  381. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_floatatt_F03.tst 313B
  382. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_int_F03.ddl 365B
  383. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_int_F03.tst 114B
  384. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_intatt_F03.ddl 511B
  385. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_intatt_F03.tst 113B
  386. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_objref_F03.ddl 369B
  387. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_objref_F03.tst 53B
  388. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_objrefatt_F03.ddl 497B
  389. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_objrefatt_F03.tst 51B
  390. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_opaque_F03.ddl 332B
  391. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_opaque_F03.tst 112B
  392. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_opaqueatt_F03.ddl 469B
  393. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_opaqueatt_F03.tst 107B
  394. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_regref_F03.ddl 771B
  395. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_regref_F03.tst 58B
  396. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_regrefatt_F03.ddl 922B
  397. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_regrefatt_F03.tst 58B
  398. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_string_F03.ddl 353B
  399. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_string_F03.tst 66B
  400. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_stringC_F03.ddl 348B
  401. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_stringC_F03.tst 68B
  402. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_stringCatt_F03.ddl 491B
  403. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_stringCatt_F03.tst 64B
  404. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_vlen_F03.ddl 250B
  405. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_vlen_F03.tst 78B
  406. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_vlenatt_F03.ddl 378B
  407. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_vlenatt_F03.tst 76B
  408. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_vlstring.ddl 355B
  409. 1.8.18/HDF5Examples/FORTRAN/H5T/testfiles/h5ex_t_vlstring.tst 68B
  410. 1.8.18/HDF5Examples/FORTRAN/makefile.am 930B
  411. 1.8.18/HDF5Examples/FORTRAN/makefile.in 18.21KB
  412. 1.8.18/HDF5Examples/makefile.am 821B
  413. 1.8.18/HDF5Examples/makefile.in 17.54KB
  414. 1.8.18/HDF5Examples/Using_CMake.txt 8.21KB
  415. 1.8.18/include/
  416. 1.8.18/include/H5AbstractDs.h 3.63KB
  417. 1.8.18/include/H5ACpkg.h 15.35KB
  418. 1.8.18/include/H5ACpublic.h 22.55KB
  419. 1.8.18/include/H5Alltypes.h 1.53KB
  420. 1.8.18/include/H5api_adpt.h 10.65KB
  421. 1.8.18/include/H5Apkg.h 12.91KB
  422. 1.8.18/include/H5Apublic.h 5.61KB
  423. 1.8.18/include/H5ArrayType.h 2.36KB
  424. 1.8.18/include/H5AtomType.h 3.03KB
  425. 1.8.18/include/H5Attribute.h 4.44KB
  426. 1.8.18/include/H5B2pkg.h 18.17KB
  427. 1.8.18/include/H5B2public.h 1.93KB
  428. 1.8.18/include/H5Bpkg.h 3.75KB
  429. 1.8.18/include/H5Bpublic.h 1.67KB
  430. 1.8.18/include/H5Classes.h 1.75KB
  431. 1.8.18/include/H5CommonFG.h 7.62KB
  432. 1.8.18/include/H5CompType.h 4.41KB
  433. 1.8.18/include/H5Cpkg.h 190.95KB
  434. 1.8.18/include/H5Cpp.h 2.18KB
  435. 1.8.18/include/H5CppDoc.h 3.9KB
  436. 1.8.18/include/H5Cpublic.h 1.93KB
  437. 1.8.18/include/H5DataSet.h 6.5KB
  438. 1.8.18/include/H5DataSpace.h 5.29KB
  439. 1.8.18/include/H5DataType.h 5.58KB
  440. 1.8.18/include/H5DcreatProp.h 5.67KB
  441. 1.8.18/include/h5diff.h 8.03KB
  442. 1.8.18/include/H5DOpublic.h 1.6KB
  443. 1.8.18/include/H5Dpkg.h 37.33KB
  444. 1.8.18/include/H5Dpublic.h 6.65KB
  445. 1.8.18/include/H5DSpublic.h 2.76KB
  446. 1.8.18/include/H5DxferProp.h 5.18KB
  447. 1.8.18/include/H5Edefin.h 11.94KB
  448. 1.8.18/include/H5Einit.h 51.42KB
  449. 1.8.18/include/H5EnumType.h 3.01KB
  450. 1.8.18/include/H5Epkg.h 5.7KB
  451. 1.8.18/include/H5Epubgen.h 19.39KB
  452. 1.8.18/include/H5Epublic.h 9.19KB
  453. 1.8.18/include/H5Eterm.h 5KB
  454. 1.8.18/include/H5Exception.h 6.07KB
  455. 1.8.18/include/H5f90.h 1.46KB
  456. 1.8.18/include/H5f90i.h 1.59KB
  457. 1.8.18/include/H5f90i_gen.h 1.91KB
  458. 1.8.18/include/H5f90proto.h 107.44KB
  459. 1.8.18/include/H5FaccProp.h 6.13KB
  460. 1.8.18/include/H5FcreatProp.h 3.55KB
  461. 1.8.18/include/H5FDcore.h 1.71KB
  462. 1.8.18/include/H5FDdirect.h 2.18KB
  463. 1.8.18/include/H5FDfamily.h 1.73KB
  464. 1.8.18/include/H5FDlog.h 3.24KB
  465. 1.8.18/include/H5FDmpi.h 2.73KB
  466. 1.8.18/include/H5FDmpio.h 2.63KB
  467. 1.8.18/include/H5FDmulti.h 2.09KB
  468. 1.8.18/include/H5FDpkg.h 2.47KB
  469. 1.8.18/include/H5FDpublic.h 14.37KB
  470. 1.8.18/include/H5FDsec2.h 1.56KB
  471. 1.8.18/include/H5FDstdio.h 1.56KB
  472. 1.8.18/include/H5FDwindows.h 1.95KB
  473. 1.8.18/include/H5File.h 4.58KB
  474. 1.8.18/include/H5FloatType.h 2.93KB
  475. 1.8.18/include/H5fortran_types.f90 2.2KB
  476. 1.8.18/include/H5Fpkg.h 17.62KB
  477. 1.8.18/include/H5Fpublic.h 8.9KB
  478. 1.8.18/include/H5FSpkg.h 11.89KB
  479. 1.8.18/include/H5FSpublic.h 1.94KB
  480. 1.8.18/include/H5Gpkg.h 24.16KB
  481. 1.8.18/include/H5Gpublic.h 7.31KB
  482. 1.8.18/include/H5Group.h 2.5KB
  483. 1.8.18/include/H5HFpkg.h 43.46KB
  484. 1.8.18/include/H5HFpublic.h 1.94KB
  485. 1.8.18/include/H5HGpkg.h 5.79KB
  486. 1.8.18/include/H5HGpublic.h 1.38KB
  487. 1.8.18/include/H5HLpkg.h 6.17KB
  488. 1.8.18/include/H5HLpublic.h 1.68KB
  489. 1.8.18/include/H5IdComponent.h 4.26KB
  490. 1.8.18/include/H5IMpublic.h 3.44KB
  491. 1.8.18/include/H5Include.h 1.77KB
  492. 1.8.18/include/H5IntType.h 2.07KB
  493. 1.8.18/include/H5Ipkg.h 2.81KB
  494. 1.8.18/include/H5Ipublic.h 4.66KB
  495. 1.8.18/include/H5Library.h 2.88KB
  496. 1.8.18/include/H5Location.h 7.81KB
  497. 1.8.18/include/H5Lpkg.h 2.42KB
  498. 1.8.18/include/H5Lpublic.h 9.31KB
  499. 1.8.18/include/H5LTparse.h 4.53KB
  500. 1.8.18/include/H5LTpublic.h 14.37KB
  501. 1.8.18/include/H5MMpublic.h 1.93KB
  502. 1.8.18/include/H5MPpkg.h 4.43KB
  503. 1.8.18/include/H5Object.h 3.41KB
  504. 1.8.18/include/H5OcreatProp.h 2.86KB
  505. 1.8.18/include/H5Opkg.h 29.21KB
  506. 1.8.18/include/H5Opublic.h 10.21KB
  507. 1.8.18/include/H5Oshared.h 18.87KB
  508. 1.8.18/include/H5overflow.h 99.54KB
  509. 1.8.18/include/H5PacketTable.h 7.91KB
  510. 1.8.18/include/H5PLextern.h 1.71KB
  511. 1.8.18/include/H5PLpublic.h 2.03KB
  512. 1.8.18/include/H5Ppkg.h 10.91KB
  513. 1.8.18/include/H5Ppublic.h 24.74KB
  514. 1.8.18/include/H5PredType.h 15.08KB
  515. 1.8.18/include/H5PropList.h 5.04KB
  516. 1.8.18/include/H5PTpublic.h 4.03KB
  517. 1.8.18/include/H5pubconf.h 18.55KB
  518. 1.8.18/include/H5public.h 12.28KB
  519. 1.8.18/include/H5Rpkg.h 2.34KB
  520. 1.8.18/include/H5Rpublic.h 3.69KB
  521. 1.8.18/include/H5SMpkg.h 12.7KB
  522. 1.8.18/include/H5Spkg.h 13.57KB
  523. 1.8.18/include/H5Spublic.h 7.39KB
  524. 1.8.18/include/H5StrType.h 2.5KB
  525. 1.8.18/include/H5TBpublic.h 8.6KB
  526. 1.8.18/include/h5tools.h 26.23KB
  527. 1.8.18/include/h5tools_dump.h 4.68KB
  528. 1.8.18/include/h5tools_ref.h 1.63KB
  529. 1.8.18/include/h5tools_str.h 3.1KB
  530. 1.8.18/include/h5tools_utils.h 6.86KB
  531. 1.8.18/include/H5Tpkg.h 67.23KB
  532. 1.8.18/include/H5Tpublic.h 27.29KB
  533. 1.8.18/include/h5trav.h 8KB
  534. 1.8.18/include/H5VarLenType.h 2.01KB
  535. 1.8.18/include/H5version.h 12.67KB
  536. 1.8.18/include/H5Zpkg.h 2.02KB
  537. 1.8.18/include/H5Zpublic.h 11.24KB
  538. 1.8.18/include/hdf5.h 2.71KB
  539. 1.8.18/include/hdf5_hl.h 1.64KB
  540. 1.8.18/include/ricehdf.h 3.39KB
  541. 1.8.18/include/shared/
  542. 1.8.18/include/shared/h5_dble_interface.mod 73.06KB
  543. 1.8.18/include/shared/h5a.mod 23.09KB
  544. 1.8.18/include/shared/h5a_provisional.mod 313.01KB
  545. 1.8.18/include/shared/h5d.mod 20.2KB
  546. 1.8.18/include/shared/h5d_provisional.mod 457.78KB
  547. 1.8.18/include/shared/h5ds.mod 8.19KB
  548. 1.8.18/include/shared/h5e.mod 2.89KB
  549. 1.8.18/include/shared/h5e_provisional.mod 2.13KB
  550. 1.8.18/include/shared/h5f.mod 10.13KB
  551. 1.8.18/include/shared/h5f_provisional.mod 4.37KB
  552. 1.8.18/include/shared/h5fortran_types.mod 2.79KB
  553. 1.8.18/include/shared/h5g.mod 16.22KB
  554. 1.8.18/include/shared/h5global.mod 76.63KB
  555. 1.8.18/include/shared/h5i.mod 3.88KB
  556. 1.8.18/include/shared/h5im.mod 12.86KB
  557. 1.8.18/include/shared/h5l.mod 14.92KB
  558. 1.8.18/include/shared/h5l_provisional.mod 8.25KB
  559. 1.8.18/include/shared/h5lib.mod 8.15KB
  560. 1.8.18/include/shared/h5lib_provisional.mod 108.47KB
  561. 1.8.18/include/shared/h5lt.mod 209.39KB
  562. 1.8.18/include/shared/h5o.mod 11.42KB
  563. 1.8.18/include/shared/h5o_provisional.mod 14.79KB
  564. 1.8.18/include/shared/h5p.mod 67.3KB
  565. 1.8.18/include/shared/h5p_provisional.mod 706.74KB
  566. 1.8.18/include/shared/h5r.mod 1.61KB
  567. 1.8.18/include/shared/h5r_provisional.mod 497.48KB
  568. 1.8.18/include/shared/h5s.mod 17.49KB
  569. 1.8.18/include/shared/h5t.mod 31.91KB
  570. 1.8.18/include/shared/h5t_provisional.mod 6.91KB
  571. 1.8.18/include/shared/h5tb.mod 36.44KB
  572. 1.8.18/include/shared/h5z.mod 1.57KB
  573. 1.8.18/include/shared/hdf5.mod 4.39KB
  574. 1.8.18/include/static/
  575. 1.8.18/include/static/h5_dble_interface.mod 73.06KB
  576. 1.8.18/include/static/h5a.mod 23.09KB
  577. 1.8.18/include/static/h5a_provisional.mod 313.01KB
  578. 1.8.18/include/static/h5d.mod 20.2KB
  579. 1.8.18/include/static/h5d_provisional.mod 457.78KB
  580. 1.8.18/include/static/h5ds.mod 8.19KB
  581. 1.8.18/include/static/h5e.mod 2.89KB
  582. 1.8.18/include/static/h5e_provisional.mod 2.13KB
  583. 1.8.18/include/static/h5f.mod 10.13KB
  584. 1.8.18/include/static/h5f_provisional.mod 4.37KB
  585. 1.8.18/include/static/h5fortran_types.mod 2.79KB
  586. 1.8.18/include/static/h5g.mod 16.22KB
  587. 1.8.18/include/static/h5global.mod 76.63KB
  588. 1.8.18/include/static/h5i.mod 3.88KB
  589. 1.8.18/include/static/h5im.mod 12.86KB
  590. 1.8.18/include/static/h5l.mod 14.92KB
  591. 1.8.18/include/static/h5l_provisional.mod 8.25KB
  592. 1.8.18/include/static/h5lib.mod 8.15KB
  593. 1.8.18/include/static/h5lib_provisional.mod 108.47KB
  594. 1.8.18/include/static/h5lt.mod 209.39KB
  595. 1.8.18/include/static/h5o.mod 11.42KB
  596. 1.8.18/include/static/h5o_provisional.mod 14.79KB
  597. 1.8.18/include/static/h5p.mod 67.3KB
  598. 1.8.18/include/static/h5p_provisional.mod 706.74KB
  599. 1.8.18/include/static/h5r.mod 1.61KB
  600. 1.8.18/include/static/h5r_provisional.mod 497.48KB
  601. 1.8.18/include/static/h5s.mod 17.49KB
  602. 1.8.18/include/static/h5t.mod 31.91KB
  603. 1.8.18/include/static/h5t_provisional.mod 6.91KB
  604. 1.8.18/include/static/h5tb.mod 36.44KB
  605. 1.8.18/include/static/h5z.mod 1.57KB
  606. 1.8.18/include/static/hdf5.mod 4.39KB
  607. 1.8.18/include/SZconfig.h 2.14KB
  608. 1.8.18/include/szip_adpt.h 960B
  609. 1.8.18/include/szlib.h 5.16KB
  610. 1.8.18/include/zconf.h 15.7KB
  611. 1.8.18/include/zlib.h 85.82KB
  612. 1.8.18/lib/
  613. 1.8.18/lib/hdf5.lib 474.39KB
  614. 1.8.18/lib/hdf5_cpp.lib 333.42KB
  615. 1.8.18/lib/hdf5_f90cstub.lib 115.46KB
  616. 1.8.18/lib/hdf5_fortran.lib 145.02KB
  617. 1.8.18/lib/hdf5_hl.lib 26.01KB
  618. 1.8.18/lib/hdf5_hl_cpp.lib 11.48KB
  619. 1.8.18/lib/hdf5_hl_f90cstub.lib 38.12KB
  620. 1.8.18/lib/hdf5_hl_fortran.lib 42.65KB
  621. 1.8.18/lib/hdf5_tools.lib 29.44KB
  622. 1.8.18/lib/libhdf5.lib 12.8MB
  623. 1.8.18/lib/libhdf5.settings 2.68KB
  624. 1.8.18/lib/libhdf5_cpp.lib 5.13MB
  625. 1.8.18/lib/libhdf5_f90cstub.lib 750.92KB
  626. 1.8.18/lib/libhdf5_fortran.lib 534.17KB
  627. 1.8.18/lib/libhdf5_hl.lib 500.53KB
  628. 1.8.18/lib/libhdf5_hl_cpp.lib 40.9KB
  629. 1.8.18/lib/libhdf5_hl_f90cstub.lib 224.18KB
  630. 1.8.18/lib/libhdf5_hl_fortran.lib 149.94KB
  631. 1.8.18/lib/libhdf5_tools.lib 877.24KB
  632. 1.8.18/lib/libszip.lib 122.73KB
  633. 1.8.18/lib/libzlib.lib 264.2KB
  634. 1.8.18/lib/szip.lib 3.27KB
  635. 1.8.18/lib/zlib.lib 14.83KB
  636. 1.8.18/RELEASE.txt 23.07KB
  637. 1.8.18/USING_CMake_Examples.txt 3.61KB
  638. 1.8.18/USING_HDF5_CMake.txt 18.38KB
  639. 1.8.18/USING_HDF5_VS.txt 2.67KB
0评论
提交 加载更多评论
其他资源 人格障碍诊断系统 JAVA+Vue.js+SpringBoot+MySQL
基于Vue.js和SpringBoot的人格障碍诊断系统,分为用户前台和管理后台,可以给管理员、医生角色使用,包括医生管理模块、诊断记录模块、试题试卷模块、考试管理模块、咨询信息模块和系统基础模块,项目编号T189。 项目录屏:https://www.bilibili.com/video/BV1vi421U7NG 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
人格障碍诊断系统 JAVA+Vue.js+SpringBoot+MySQL 人格障碍诊断系统 JAVA+Vue.js+SpringBoot+MySQL 人格障碍诊断系统 JAVA+Vue.js+SpringBoot+MySQL
JAVA学生信息管理系统
由JAVA语言写的学生信息管理系统 注:没应用I/O流 开始界面 1.学生注册 2.学生登入 3.老师注册 4.老师登入 注册界面 学生 学号 姓名 性别 年龄 成绩年级 密码 老师 编号 姓名 密码 性别 年龄 登入界面 学生 学号 密码 老师 编号 密码 主界面 学生 查看个人信息 退出 老师 查看学生列表 更新学生信息 删除学生信息 添加学生信息 退出
JAVA学生信息管理系统 JAVA学生信息管理系统 JAVA学生信息管理系统
利用QT制作简易计算器
利用QT制作简易计算器 a.能实现简单的加减乘除 b.能实现优先级判断,如先乘除后加减,有括号先计算括号内。 c.能实现归零、退格
线性预测房屋价格加清洗评估加分析-项目实战5-分析房屋价格数据-ipynb格式-Python语法-用Jupyter打开
线性预测房屋价格加清洗评估加分析-项目实战5-分析房屋价格数据-ipynb格式-Python语法-用Jupyter notebook打开 用来练习多元线性回归及预测和清洗评估和分析,整个流程特别清晰,每个步骤均用Makedown编辑器进行编辑文字,每一步都给出了清晰的代码以及压缩包中给出了相应的数据集,可以按照步骤一步一步进行模仿,理解其中的思维逻辑,然后上手进行操作,在操作的过程中不断思考,等能力有了很大提升之后,就可以慢慢独立思考从事项目了 最后祝您变得更强
mingw+cmake+QT的GeographicLib库
mingw+cmake+QT的GeographicLib库
C++ primer plus书中2-11章代码
C++ primer plus书中2-11章代码
客户关系管理系统 JAVA+Vue.js+SpringBoot+MySQL
基于Vue.js和SpringBoot的客户关系管理系统,分为用户前台和管理后台,可以给管理员、员工角色使用,包括客户管理模块、客户积分模块、客户线索模块、沟通记录模块和系统基础模块,项目编号T188。 项目录屏:https://www.bilibili.com/video/BV12s421g7rT 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
客户关系管理系统 JAVA+Vue.js+SpringBoot+MySQL 客户关系管理系统 JAVA+Vue.js+SpringBoot+MySQL 客户关系管理系统 JAVA+Vue.js+SpringBoot+MySQL
校园网上店铺系统 JAVA+Vue.js+SpringBoot+MySQL
基于Vue.js和SpringBoot的校园网上店铺系统,分为用户前台和管理后台,可以给管理员、商铺、普通用户角色使用,包括商铺管理模块、商品管理模块、公告管理模块、用户管理模块和系统基础模块,项目编号T187。 项目录屏:https://www.bilibili.com/video/BV1Jb421e7xA 启动教程:https://www.bilibili.com/video/BV1pW4y1P7GR 项目讲解视频:https://space.bilibili.com/417412814/channel/collectiondetail?sid=2242844
校园网上店铺系统 JAVA+Vue.js+SpringBoot+MySQL 校园网上店铺系统 JAVA+Vue.js+SpringBoot+MySQL 校园网上店铺系统 JAVA+Vue.js+SpringBoot+MySQL