Is it neccessary to define the ChunkSize and Filters when using h5read?

9 views (last 30 days)
I am using h5read to read some data from hdf5 file. In the Matlab examples, the properties, "ChunkSize" and "Filters", are set as default. But in my own data, they have their specific values.
ChunkSize: [1 9498 2]
>> ifo.Filters
ans =
struct with fields:
Name: 'deflate'
Data: 4
I want to know should I set these properties in the h5read command? If it is neccessary, how could I achieve that? I have little knowledge of the exactly meanings for these properties. Thank you.

Answers (1)

Abhishek Gupta
Abhishek Gupta on 17 Feb 2021
Hi,
As per my understanding, you would like to know if you need to define the "ChunkSize" and "Filters" parameters while reading the file using the "h5read" function. If you have already defined the "ChunkSize" and "Filters", while creating the HDF5 dataset, then there is no need to specify. To confirm, if your dataset has the desired parameter values, then use the "h5disp" function in MATLAB.
Referring to the following MATLAB documentation: -
  1. h5read
  2. h5create

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!