why does hdf5read function return only 4 decimal places instead all numbers
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Nurul Ain
il 28 Apr 2014
Commentato: Nurul Ain
il 28 Apr 2014
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));
0 Commenti
Risposta accettata
Ashish Uthama
il 28 Apr 2014
>> hinfo = hdf5info('test.hdf5');
dset = hdf5read(hinfo.GroupHierarchy.Datasets(1));
dset
dset =
0.6996
>> format long
>> dset
dset =
0.699552191362574
>>
Più risposte (0)
Vedere anche
Categorie
Scopri di più su HDF5 in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!