필터 지우기
필터 지우기

why does hdf5read function return only 4 decimal places instead all numbers

조회 수: 1 (최근 30일)
Hi all,
I run this code to read dataset in my test.hdf5 file. It return me 0.6996 instead of the whole 0.699552191362574. Please guide.
hinfo = hdf5info('test.hdf5');
dset = hdf5read(hinfo.GroupHierarchy.Datasets(1));
and here is my test.hdf5 file. test.hdf5

채택된 답변

Ashish Uthama
Ashish Uthama 2014년 4월 28일
Look at the documentation for format.
>> hinfo = hdf5info('test.hdf5');
dset = hdf5read(hinfo.GroupHierarchy.Datasets(1));
dset
dset =
0.6996
>> format long
>> dset
dset =
0.699552191362574
>>

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 HDF5에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by