“Hdf5”的版本间差异
跳到导航
跳到搜索
(→IDL) |
无编辑摘要 |
||
第4行: | 第4行: | ||
*IDL provides access to this library via a set of procedures and functions contained in a dynamically loadable module (DLM). |
*IDL provides access to this library via a set of procedures and functions contained in a dynamically loadable module (DLM). |
||
IDL>HELP, 'hdf5', /DLM |
IDL>HELP, 'hdf5', /DLM |
||
* 查看Hdf5的文件结构 |
* 查看Hdf5的文件结构,并直接读取 |
||
IDL>file=h5_parse(filename) ;IDL 7.1 |
IDL>file=h5_parse(filename,/read_data) ;IDL 7.1 |
||
IDL>file=h5_browser(filename) ;可视化界面 |
|||
*pro: H5F_open,H5D_open,H5D_read,H5D_CLOSE |
*pro: H5F_open,H5D_open,H5D_read,H5D_CLOSE |
2015年6月19日 (五) 03:29的最新版本
The Hierarchical Data Format (HDF) version 5 file format was designed for scientific data consisting of a hierarchy of datasets and attributes (or metadata). HDF is a product of the National Center for Supercomputing Applications (NCSA), which supplies the underlying C-language library;
IDL
- IDL provides access to this library via a set of procedures and functions contained in a dynamically loadable module (DLM).
IDL>HELP, 'hdf5', /DLM
- 查看Hdf5的文件结构,并直接读取
IDL>file=h5_parse(filename,/read_data) ;IDL 7.1 IDL>file=h5_browser(filename) ;可视化界面
- pro: H5F_open,H5D_open,H5D_read,H5D_CLOSE