mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r2950] Purpose:
Bug fix Description: The output of floating point dumps wasn't necessarily standard. The h5ls utility does it in a better way. Solution: Changed the output parameters from %g to %1.*g and added the appropriate FLT_DIG/DBL_DIG parameter for the `*' in the above. Platforms tested: Linux
This commit is contained in:
parent
d197bf4f52
commit
0593d93314
@ -47,8 +47,8 @@ static h5dump_t dataformat = {
|
||||
"%lu", /*fmt_ulong*/
|
||||
NULL, /*fmt_llong*/
|
||||
NULL, /*fmt_ullong*/
|
||||
"%g", /*fmt_double*/
|
||||
"%g", /*fmt_float*/
|
||||
"%1.*g", /*fmt_double*/
|
||||
"%1.*g", /*fmt_float*/
|
||||
|
||||
0, /*ascii*/
|
||||
0, /*str_locale*/
|
||||
|
@ -713,10 +713,12 @@ h5dump_sprint(h5dump_str_t *str/*in,out*/, const h5dump_t *info,
|
||||
h5dump_str_append(str, OPT(info->fmt_raw, "%02x"), ucp_vp[i]);
|
||||
} else if (H5Tequal(type, H5T_NATIVE_DOUBLE)) {
|
||||
memcpy(&tempdouble, vp, sizeof(double));
|
||||
h5dump_str_append(str, OPT(info->fmt_double, "%g"), tempdouble);
|
||||
h5dump_str_append(str, OPT(info->fmt_double, "%1.*g"),
|
||||
DBL_DIG, tempdouble);
|
||||
} else if (H5Tequal(type, H5T_NATIVE_FLOAT)) {
|
||||
memcpy(&tempfloat, vp, sizeof(float));
|
||||
h5dump_str_append(str, OPT(info->fmt_double, "%g"), tempfloat);
|
||||
h5dump_str_append(str, OPT(info->fmt_double, "%1.*g"),
|
||||
FLT_DIG, tempfloat);
|
||||
} else if (info->ascii &&
|
||||
(H5Tequal(type, H5T_NATIVE_SCHAR) ||
|
||||
H5Tequal(type, H5T_NATIVE_UCHAR))) {
|
||||
@ -757,8 +759,7 @@ h5dump_sprint(h5dump_str_t *str/*in,out*/, const h5dump_t *info,
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
} else if (H5T_STRING==H5Tget_class(type)) {
|
||||
} else if (H5T_STRING == H5Tget_class(type)) {
|
||||
unsigned int i;
|
||||
|
||||
size = H5Tget_size(type);
|
||||
|
Loading…
x
Reference in New Issue
Block a user