mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
Add long double format option to h5dump (#5025)
This commit is contained in:
parent
72093836a3
commit
192d630f27
@ -96,6 +96,7 @@ doprint(hid_t did, const hsize_t *start, const hsize_t *block, int rank)
|
||||
{
|
||||
h5tools_context_t ctx; /* print context */
|
||||
h5tool_format_t info; /* Format info for the tools library */
|
||||
static char fmt_ldouble[16]; /* Format info */
|
||||
static char fmt_double[16], fmt_float[16]; /* Format info */
|
||||
struct subset_t subset; /* Subsetting info */
|
||||
hsize_t ss_start[H5S_MAX_RANK]; /* Info for hyperslab */
|
||||
@ -175,6 +176,8 @@ doprint(hid_t did, const hsize_t *start, const hsize_t *block, int rank)
|
||||
info.fmt_float = fmt_float;
|
||||
snprintf(fmt_double, sizeof(fmt_double), "%%1.%dg", DBL_DIG);
|
||||
info.fmt_double = fmt_double;
|
||||
snprintf(fmt_ldouble, sizeof(fmt_ldouble), "%%1.%dLg", DBL_DIG);
|
||||
info.fmt_ldouble = fmt_ldouble;
|
||||
|
||||
info.dset_format = "DSET-%s ";
|
||||
info.dset_hidefileno = 0;
|
||||
|
@ -198,6 +198,13 @@ New Features
|
||||
|
||||
Tools:
|
||||
------
|
||||
- Added h5dump command option to set the floating point format for long double
|
||||
|
||||
The new option is --lformat, which allows the user to set the
|
||||
floating point format for long double. The default format is %Lg.
|
||||
There is already an option --format to set the floating point format
|
||||
for double and float. The default format is %g.
|
||||
|
||||
- Remove the high-level GIF tools
|
||||
|
||||
The high-level GIF tools, h52gif and gif2h5, have unfixed CVE issues
|
||||
|
@ -267,6 +267,9 @@ typedef struct h5tool_format_t {
|
||||
* typed `unsigned long long'. The default depends on what
|
||||
* printf() format is available to print this datatype.
|
||||
*
|
||||
* fmt_ldouble: The printf() format to use when rendering data which is
|
||||
* typed `long double'. The default is `%Lg'.
|
||||
*
|
||||
* fmt_double: The printf() format to use when rendering data which is
|
||||
* typed `double'. The default is `%g'.
|
||||
*
|
||||
@ -303,6 +306,7 @@ typedef struct h5tool_format_t {
|
||||
const char *fmt_ulong;
|
||||
const char *fmt_llong;
|
||||
const char *fmt_ullong;
|
||||
const char *fmt_ldouble;
|
||||
const char *fmt_double;
|
||||
const char *fmt_float;
|
||||
int ascii;
|
||||
|
@ -35,6 +35,7 @@ h5tool_format_t h5tools_dataformat = {
|
||||
"%lu", /*fmt_ulong */
|
||||
NULL, /*fmt_llong */
|
||||
NULL, /*fmt_ullong */
|
||||
"%Lg", /*fmt_ldouble */
|
||||
"%g", /*fmt_double */
|
||||
"%g", /*fmt_float */
|
||||
|
||||
|
@ -729,7 +729,7 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
long double templdouble;
|
||||
|
||||
memcpy(&templdouble, vp, sizeof(long double));
|
||||
h5tools_str_append(str, "%Lg", templdouble);
|
||||
h5tools_str_append(str, OPT(info->fmt_ldouble, "%Lg"), templdouble);
|
||||
}
|
||||
else {
|
||||
size_t i;
|
||||
|
@ -98,7 +98,7 @@ struct handler_t {
|
||||
*/
|
||||
/* The following initialization makes use of C language concatenating */
|
||||
/* "xxx" "yyy" into "xxxyyy". */
|
||||
static const char *s_opts = "a:b*c:d:ef:g:hik:l:m:n*o*pq:rs:t:uvw:xyz:A*BCD:E*F:G:HK:M:N:O*RS:VX:";
|
||||
static const char *s_opts = "a:b*c:d:ef:g:hik:l:m:n*o*pq:rs:t:uvw:xyz:A*BCD:E*F:G:HK:L:M:N:O*RS:VX:";
|
||||
static struct h5_long_options l_opts[] = {{"attribute", require_arg, 'a'},
|
||||
{"binary", optional_arg, 'b'},
|
||||
{"count", require_arg, 'c'},
|
||||
@ -134,6 +134,7 @@ static struct h5_long_options l_opts[] = {{"attribute", require_arg, 'a'},
|
||||
{"vds-gap-size", require_arg, 'G'},
|
||||
{"header", no_arg, 'H'},
|
||||
{"page-buffer-size", require_arg, 'K'},
|
||||
{"lformat", require_arg, 'L'},
|
||||
{"packed-bits", require_arg, 'M'},
|
||||
{"any_path", require_arg, 'N'},
|
||||
{"ddl", optional_arg, 'O'},
|
||||
@ -285,6 +286,8 @@ usage(const char *prog)
|
||||
PRINTVALSTREAM(rawoutstream, " -r, --string Print 1-byte integer datasets as ASCII\n");
|
||||
PRINTVALSTREAM(rawoutstream, " -y, --noindex Do not print array indices with the data\n");
|
||||
PRINTVALSTREAM(rawoutstream, " -m T, --format=T Set the floating point output format\n");
|
||||
PRINTVALSTREAM(rawoutstream,
|
||||
" -L T, --lformat=T Set the floating point long double output format\n");
|
||||
PRINTVALSTREAM(rawoutstream, " -q Q, --sort_by=Q Sort groups and attributes by index Q\n");
|
||||
PRINTVALSTREAM(rawoutstream, " -z Z, --sort_order=Z Sort groups and attributes by order Z\n");
|
||||
PRINTVALSTREAM(rawoutstream,
|
||||
@ -346,7 +349,9 @@ usage(const char *prog)
|
||||
PRINTVALSTREAM(rawoutstream, " F - is a filename.\n");
|
||||
PRINTVALSTREAM(rawoutstream, " P - is the full path from the root group to the object.\n");
|
||||
PRINTVALSTREAM(rawoutstream, " N - is an integer greater than 1.\n");
|
||||
PRINTVALSTREAM(rawoutstream, " T - is a string containing the floating point format, e.g '%%.3f'\n");
|
||||
PRINTVALSTREAM(rawoutstream, " T - is a string containing the floating point format, e.g '%%.3g'\n");
|
||||
PRINTVALSTREAM(rawoutstream,
|
||||
" T - is a string containing the floating point long double format, e.g '%%.3Lg'\n");
|
||||
PRINTVALSTREAM(rawoutstream, " U - is a URI reference (as defined in [IETF RFC 2396],\n");
|
||||
PRINTVALSTREAM(rawoutstream, " updated by [IETF RFC 2732])\n");
|
||||
PRINTVALSTREAM(rawoutstream,
|
||||
@ -1056,6 +1061,12 @@ parse_start:
|
||||
h5tools_nCols = 0;
|
||||
break;
|
||||
|
||||
case 'L':
|
||||
/* specify alternative floating point long double printing format */
|
||||
fp_lformat = H5_optarg;
|
||||
h5tools_nCols = 0;
|
||||
break;
|
||||
|
||||
case 'X':
|
||||
/* specify XML namespace (default="hdf5:"), or none */
|
||||
/* To Do: check format of this value? */
|
||||
|
@ -95,6 +95,7 @@
|
||||
* \li <strong>--string</strong> Print 1-byte integer datasets as ASCII
|
||||
* \li <strong>--noindex</strong> Do not print array indices with the data
|
||||
* \li <strong>--format=T</strong> Set the floating point output format
|
||||
* \li <strong>--lformat=T</strong> Set the floating point long double output format
|
||||
* \li <strong>--sort_by=Q</strong> Sort groups and attributes by index Q
|
||||
* \li <strong>--sort_order=Z</strong> Sort groups and attributes by order Z
|
||||
* \li <strong>--no-compact-subset</strong> Disable compact form of subsetting and allow the use
|
||||
@ -143,7 +144,8 @@
|
||||
* \li <strong>F</strong> - is a filename.
|
||||
* \li <strong>P</strong> - is the full path from the root group to the object.
|
||||
* \li <strong>N</strong> - is an integer greater than 1.
|
||||
* \li <strong>T</strong> - is a string containing the floating point format, e.g '%.3f'
|
||||
* \li <strong>T</strong> - is a string containing the floating point format, e.g '%.3g'
|
||||
* \li <strong>T</strong> - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
* \li <strong>U</strong> - is a URI reference (as defined in [IETF RFC 2396],
|
||||
* updated by [IETF RFC 2732])
|
||||
* \li <strong>B</strong> - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
@ -239,6 +241,7 @@ bool hit_elink = false; /* whether we have traversed an external link *
|
||||
size_t prefix_len = 1024;
|
||||
char *prefix = NULL;
|
||||
const char *fp_format = NULL;
|
||||
const char *fp_lformat = NULL;
|
||||
|
||||
/* things to display or which are set via command line parameters */
|
||||
typedef struct {
|
||||
|
@ -116,6 +116,9 @@ dump_attr_cb(hid_t oid, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED *
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -175,6 +178,9 @@ dump_all_cb(hid_t group, const char *name, const H5L_info2_t *linfo, void H5_ATT
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -646,6 +652,9 @@ dump_named_datatype(hid_t tid, const char *name)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -802,6 +811,9 @@ dump_group(hid_t gid, const char *name)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -928,6 +940,9 @@ dump_dataset(hid_t did, const char *name, struct subset_t *sset)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -1098,6 +1113,9 @@ dump_data(hid_t obj_id, int obj_data, struct subset_t *sset, int display_index)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -1563,6 +1581,9 @@ handle_attributes(hid_t fid, const char *attr, void H5_ATTR_UNUSED *data, int H5
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
|
@ -56,6 +56,7 @@ extern bool hit_elink; /* whether we have traversed an external link */
|
||||
extern size_t prefix_len;
|
||||
extern char *prefix;
|
||||
extern const char *fp_format;
|
||||
extern const char *fp_lformat;
|
||||
|
||||
/* things to display or which are set via command line parameters */
|
||||
typedef struct {
|
||||
|
@ -47,6 +47,7 @@ static h5tool_format_t xml_dataformat = {
|
||||
"%lu", /*fmt_ulong */
|
||||
NULL, /*fmt_llong */
|
||||
NULL, /*fmt_ullong */
|
||||
"%Lg", /*fmt_ldouble */
|
||||
"%g", /*fmt_double */
|
||||
"%g", /*fmt_float */
|
||||
|
||||
@ -152,6 +153,9 @@ xml_dump_all_cb(hid_t group, const char *name, const H5L_info2_t *linfo, void H5
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -885,6 +889,9 @@ xml_print_datatype(hid_t type, unsigned in_group)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -1582,6 +1589,9 @@ xml_dump_datatype(hid_t type)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -1716,6 +1726,9 @@ xml_dump_dataspace(hid_t space)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -1889,6 +1902,9 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t H5_ATTR_UNUSED *sset,
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -2056,6 +2072,9 @@ xml_dump_attr(hid_t attr, const char *attr_name, const H5A_info_t H5_ATTR_UNUSED
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -2387,6 +2406,9 @@ xml_dump_named_datatype(hid_t type, const char *name)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -2606,6 +2628,9 @@ xml_dump_group(hid_t gid, const char *name)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -3010,6 +3035,9 @@ xml_print_refs(hid_t did, int source)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -3166,6 +3194,9 @@ xml_print_strs(hid_t did, int source)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -3281,6 +3312,9 @@ check_filters(hid_t dcpl)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -3422,6 +3456,9 @@ xml_dump_fill_value(hid_t dcpl, hid_t type)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -3803,6 +3840,9 @@ xml_dump_dataset(hid_t did, const char *name, struct subset_t H5_ATTR_UNUSED *ss
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
@ -4390,6 +4430,9 @@ xml_print_enum(hid_t type)
|
||||
string_dataformat.fmt_double = fp_format;
|
||||
string_dataformat.fmt_float = fp_format;
|
||||
}
|
||||
if (fp_lformat) {
|
||||
string_dataformat.fmt_ldouble = fp_lformat;
|
||||
}
|
||||
|
||||
if (h5tools_nCols == 0) {
|
||||
string_dataformat.line_ncols = 65535;
|
||||
|
@ -45,6 +45,7 @@ static h5tool_format_t ls_dataformat = {
|
||||
"%lu", /*fmt_ulong */
|
||||
NULL, /*fmt_llong */
|
||||
NULL, /*fmt_ullong */
|
||||
"%Lg", /*fmt_ldouble */
|
||||
"%g", /*fmt_double */
|
||||
"%g", /*fmt_float */
|
||||
|
||||
@ -1324,6 +1325,7 @@ dump_dataset_values(hid_t dset)
|
||||
hsize_t total_size[H5S_MAX_RANK];
|
||||
int ndims;
|
||||
char string_prefix[64];
|
||||
static char fmt_ldouble[16];
|
||||
static char fmt_double[16];
|
||||
static char fmt_float[16];
|
||||
hsize_t curr_pos = 0; /* total data element position */
|
||||
@ -1399,6 +1401,8 @@ dump_dataset_values(hid_t dset)
|
||||
outputformat.fmt_float = fmt_float;
|
||||
snprintf(fmt_double, sizeof(fmt_double), "%%1.%dg", DBL_DIG);
|
||||
outputformat.fmt_double = fmt_double;
|
||||
snprintf(fmt_ldouble, sizeof(fmt_ldouble), "%%1.%dLg", LDBL_DIG);
|
||||
outputformat.fmt_ldouble = fmt_ldouble;
|
||||
|
||||
if (hexdump_g) {
|
||||
/* Print all data in hexadecimal format if the `-x' or `--hexdump'
|
||||
@ -1493,6 +1497,7 @@ dump_attribute_values(hid_t attr)
|
||||
hsize_t total_size[H5S_MAX_RANK];
|
||||
int ndims;
|
||||
char string_prefix[64];
|
||||
static char fmt_ldouble[16];
|
||||
static char fmt_double[16];
|
||||
static char fmt_float[16];
|
||||
hsize_t curr_pos = 0; /* total data element position */
|
||||
@ -1568,6 +1573,8 @@ dump_attribute_values(hid_t attr)
|
||||
outputformat.fmt_float = fmt_float;
|
||||
snprintf(fmt_double, sizeof(fmt_double), "%%1.%dg", DBL_DIG);
|
||||
outputformat.fmt_double = fmt_double;
|
||||
snprintf(fmt_ldouble, sizeof(fmt_ldouble), "%%1.%dLg", LDBL_DIG);
|
||||
outputformat.fmt_ldouble = fmt_ldouble;
|
||||
|
||||
if (hexdump_g) {
|
||||
/* Print all data in hexadecimal format if the `-x' or `--hexdump'
|
||||
|
@ -103,8 +103,7 @@
|
||||
tfamily.ddl
|
||||
tfill.ddl
|
||||
tfletcher32.ddl
|
||||
#tfloatsattrs.ddl #native
|
||||
#tfloatsattrs.wddl #special for windows
|
||||
tfloatsattrs.ddl
|
||||
tfloat16.ddl
|
||||
tfloat16_be.ddl
|
||||
tfpformat.ddl
|
||||
@ -400,12 +399,10 @@
|
||||
HDFTEST_COPY_FILE("${PROJECT_SOURCE_DIR}/expected/tbin1.ddl" "${PROJECT_BINARY_DIR}/testfiles/std/tbin1LE.ddl" "h5dump_std_files")
|
||||
|
||||
# Certain versions of Visual Studio produce rounding differences compared with the reference data of the tfloatsattr test
|
||||
if (WIN32 AND (CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION VERSION_LESS 10.0.18362.0 OR CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION VERSION_GREATER_EQUAL 19.41.34123.0))
|
||||
if (WIN32 AND (CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION VERSION_LESS 10.0.18362.0))
|
||||
configure_file(${PROJECT_SOURCE_DIR}/exportfiles/tbinregR.exp ${PROJECT_BINARY_DIR}/testfiles/std/tbinregR.exp NEWLINE_STYLE CRLF)
|
||||
HDFTEST_COPY_FILE("${PROJECT_SOURCE_DIR}/expected/tfloatsattrs.wddl" "${PROJECT_BINARY_DIR}/testfiles/std/tfloatsattrs.ddl" "h5dump_std_files")
|
||||
else ()
|
||||
HDFTEST_COPY_FILE("${PROJECT_SOURCE_DIR}/exportfiles/tbinregR.exp" "${PROJECT_BINARY_DIR}/testfiles/std/tbinregR.exp" "h5dump_std_files")
|
||||
HDFTEST_COPY_FILE("${PROJECT_SOURCE_DIR}/expected/tfloatsattrs.ddl" "${PROJECT_BINARY_DIR}/testfiles/std/tfloatsattrs.ddl" "h5dump_std_files")
|
||||
endif ()
|
||||
add_custom_target(h5dump_std_files ALL COMMENT "Copying files needed by h5dump_std tests" DEPENDS ${h5dump_std_files_list})
|
||||
|
||||
@ -1309,7 +1306,7 @@
|
||||
ADD_H5_TEST (zerodim 0 --enable-error-stack zerodim.h5)
|
||||
|
||||
# test for long double (some systems do not have long double)
|
||||
ADD_H5_TEST (tfloatsattrs 0 -p --enable-error-stack tfloatsattrs.h5)
|
||||
ADD_H5_TEST (tfloatsattrs 0 -p --format=%.4g --lformat=%.4Lg --width=80 --enable-error-stack tfloatsattrs.h5)
|
||||
ADD_H5_TEST (tldouble 0 --enable-error-stack tldouble.h5)
|
||||
ADD_H5_TEST (tldouble_scalar 0 -p --enable-error-stack tldouble_scalar.h5)
|
||||
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -72,6 +72,7 @@ usage: h5dump [OPTIONS] files
|
||||
-r, --string Print 1-byte integer datasets as ASCII
|
||||
-y, --noindex Do not print array indices with the data
|
||||
-m T, --format=T Set the floating point output format
|
||||
-L T, --lformat=T Set the floating point long double output format
|
||||
-q Q, --sort_by=Q Sort groups and attributes by index Q
|
||||
-z Z, --sort_order=Z Sort groups and attributes by order Z
|
||||
--no-compact-subset Disable compact form of subsetting and allow the use
|
||||
@ -114,7 +115,8 @@ usage: h5dump [OPTIONS] files
|
||||
F - is a filename.
|
||||
P - is the full path from the root group to the object.
|
||||
N - is an integer greater than 1.
|
||||
T - is a string containing the floating point format, e.g '%.3f'
|
||||
T - is a string containing the floating point format, e.g '%.3g'
|
||||
T - is a string containing the floating point long double format, e.g '%.3Lg'
|
||||
U - is a URI reference (as defined in [IETF RFC 2396],
|
||||
updated by [IETF RFC 2732])
|
||||
B - is the form of binary output: NATIVE for a memory type, FILE for the
|
||||
|
@ -20,322 +20,254 @@ GROUP "/" {
|
||||
}
|
||||
DATA {
|
||||
(0,0): 128, 0.0625, 0.125, 0.1875, 0.25, 0.3125, 0.375, 0.4375, 0.5,
|
||||
(0,9): 0.5625, 0.625, 0.6875, 0.75, 0.8125, 0.875, 0.9375, 1, 1.0625,
|
||||
(0,18): 1.125, 1.1875, 1.25, 1.3125, 1.375, 1.4375, 1.5, 1.5625, 1.625,
|
||||
(0,27): 1.6875, 1.75, 1.8125, 1.875, 1.9375, 2, 2.0625, 2.125, 2.1875,
|
||||
(0,36): 2.25, 2.3125, 2.375, 2.4375, 2.5, 2.5625, 2.625, 2.6875, 2.75,
|
||||
(0,45): 2.8125, 2.875, 2.9375, 3, 3.0625, 3.125, 3.1875, 3.25, 3.3125,
|
||||
(0,54): 3.375, 3.4375, 3.5, 3.5625, 3.625, 3.6875, 3.75, 3.8125, 3.875,
|
||||
(0,63): 3.9375, 4, 4.0625, 4.125, 4.1875, 4.25, 4.3125, 4.375, 4.4375,
|
||||
(0,72): 4.5, 4.5625, 4.625, 4.6875, 4.75, 4.8125, 4.875, 4.9375, 5,
|
||||
(0,81): 5.0625, 5.125, 5.1875, 5.25, 5.3125, 5.375, 5.4375, 5.5,
|
||||
(0,89): 5.5625, 5.625, 5.6875, 5.75, 5.8125, 5.875, 5.9375, 6, 6.0625,
|
||||
(0,98): 6.125, 6.1875, 6.25, 6.3125, 6.375, 6.4375, 6.5, 6.5625, 6.625,
|
||||
(0,107): 6.6875, 6.75, 6.8125, 6.875, 6.9375, 7, 7.0625, 7.125, 7.1875,
|
||||
(0,116): 7.25, 7.3125, 7.375, 7.4375, 7.5, 7.5625, 7.625, 7.6875, 7.75,
|
||||
(0,125): 7.8125, 7.875, 7.9375,
|
||||
(1,0): 127, 0.0703125, 0.132812, 0.195312, 0.257812, 0.320312,
|
||||
(1,6): 0.382812, 0.445312, 0.507812, 0.570312, 0.632812, 0.695312,
|
||||
(1,12): 0.757812, 0.820312, 0.882812, 0.945312, 1.00781, 1.07031,
|
||||
(1,18): 1.13281, 1.19531, 1.25781, 1.32031, 1.38281, 1.44531, 1.50781,
|
||||
(1,25): 1.57031, 1.63281, 1.69531, 1.75781, 1.82031, 1.88281, 1.94531,
|
||||
(1,32): 2.00781, 2.07031, 2.13281, 2.19531, 2.25781, 2.32031, 2.38281,
|
||||
(1,39): 2.44531, 2.50781, 2.57031, 2.63281, 2.69531, 2.75781, 2.82031,
|
||||
(1,46): 2.88281, 2.94531, 3.00781, 3.07031, 3.13281, 3.19531, 3.25781,
|
||||
(1,53): 3.32031, 3.38281, 3.44531, 3.50781, 3.57031, 3.63281, 3.69531,
|
||||
(1,60): 3.75781, 3.82031, 3.88281, 3.94531, 4.00781, 4.07031, 4.13281,
|
||||
(1,67): 4.19531, 4.25781, 4.32031, 4.38281, 4.44531, 4.50781, 4.57031,
|
||||
(1,74): 4.63281, 4.69531, 4.75781, 4.82031, 4.88281, 4.94531, 5.00781,
|
||||
(1,81): 5.07031, 5.13281, 5.19531, 5.25781, 5.32031, 5.38281, 5.44531,
|
||||
(1,88): 5.50781, 5.57031, 5.63281, 5.69531, 5.75781, 5.82031, 5.88281,
|
||||
(1,95): 5.94531, 6.00781, 6.07031, 6.13281, 6.19531, 6.25781, 6.32031,
|
||||
(1,102): 6.38281, 6.44531, 6.50781, 6.57031, 6.63281, 6.69531, 6.75781,
|
||||
(1,109): 6.82031, 6.88281, 6.94531, 7.00781, 7.07031, 7.13281, 7.19531,
|
||||
(1,116): 7.25781, 7.32031, 7.38281, 7.44531, 7.50781, 7.57031, 7.63281,
|
||||
(1,123): 7.69531, 7.75781, 7.82031, 7.88281, 7.94531,
|
||||
(2,0): 126, 0.078125, 0.140625, 0.203125, 0.265625, 0.328125, 0.390625,
|
||||
(2,7): 0.453125, 0.515625, 0.578125, 0.640625, 0.703125, 0.765625,
|
||||
(2,13): 0.828125, 0.890625, 0.953125, 1.01562, 1.07812, 1.14062,
|
||||
(2,19): 1.20312, 1.26562, 1.32812, 1.39062, 1.45312, 1.51562, 1.57812,
|
||||
(2,26): 1.64062, 1.70312, 1.76562, 1.82812, 1.89062, 1.95312, 2.01562,
|
||||
(2,33): 2.07812, 2.14062, 2.20312, 2.26562, 2.32812, 2.39062, 2.45312,
|
||||
(2,40): 2.51562, 2.57812, 2.64062, 2.70312, 2.76562, 2.82812, 2.89062,
|
||||
(2,47): 2.95312, 3.01562, 3.07812, 3.14062, 3.20312, 3.26562, 3.32812,
|
||||
(2,54): 3.39062, 3.45312, 3.51562, 3.57812, 3.64062, 3.70312, 3.76562,
|
||||
(2,61): 3.82812, 3.89062, 3.95312, 4.01562, 4.07812, 4.14062, 4.20312,
|
||||
(2,68): 4.26562, 4.32812, 4.39062, 4.45312, 4.51562, 4.57812, 4.64062,
|
||||
(2,75): 4.70312, 4.76562, 4.82812, 4.89062, 4.95312, 5.01562, 5.07812,
|
||||
(2,82): 5.14062, 5.20312, 5.26562, 5.32812, 5.39062, 5.45312, 5.51562,
|
||||
(2,89): 5.57812, 5.64062, 5.70312, 5.76562, 5.82812, 5.89062, 5.95312,
|
||||
(2,96): 6.01562, 6.07812, 6.14062, 6.20312, 6.26562, 6.32812, 6.39062,
|
||||
(2,103): 6.45312, 6.51562, 6.57812, 6.64062, 6.70312, 6.76562, 6.82812,
|
||||
(2,110): 6.89062, 6.95312, 7.01562, 7.07812, 7.14062, 7.20312, 7.26562,
|
||||
(2,117): 7.32812, 7.39062, 7.45312, 7.51562, 7.57812, 7.64062, 7.70312,
|
||||
(2,124): 7.76562, 7.82812, 7.89062, 7.95312,
|
||||
(3,0): 125, 0.0859375, 0.148438, 0.210938, 0.273438, 0.335938,
|
||||
(3,6): 0.398438, 0.460938, 0.523438, 0.585938, 0.648438, 0.710938,
|
||||
(3,12): 0.773438, 0.835938, 0.898438, 0.960938, 1.02344, 1.08594,
|
||||
(3,18): 1.14844, 1.21094, 1.27344, 1.33594, 1.39844, 1.46094, 1.52344,
|
||||
(3,25): 1.58594, 1.64844, 1.71094, 1.77344, 1.83594, 1.89844, 1.96094,
|
||||
(3,32): 2.02344, 2.08594, 2.14844, 2.21094, 2.27344, 2.33594, 2.39844,
|
||||
(3,39): 2.46094, 2.52344, 2.58594, 2.64844, 2.71094, 2.77344, 2.83594,
|
||||
(3,46): 2.89844, 2.96094, 3.02344, 3.08594, 3.14844, 3.21094, 3.27344,
|
||||
(3,53): 3.33594, 3.39844, 3.46094, 3.52344, 3.58594, 3.64844, 3.71094,
|
||||
(3,60): 3.77344, 3.83594, 3.89844, 3.96094, 4.02344, 4.08594, 4.14844,
|
||||
(3,67): 4.21094, 4.27344, 4.33594, 4.39844, 4.46094, 4.52344, 4.58594,
|
||||
(3,74): 4.64844, 4.71094, 4.77344, 4.83594, 4.89844, 4.96094, 5.02344,
|
||||
(3,81): 5.08594, 5.14844, 5.21094, 5.27344, 5.33594, 5.39844, 5.46094,
|
||||
(3,88): 5.52344, 5.58594, 5.64844, 5.71094, 5.77344, 5.83594, 5.89844,
|
||||
(3,95): 5.96094, 6.02344, 6.08594, 6.14844, 6.21094, 6.27344, 6.33594,
|
||||
(3,102): 6.39844, 6.46094, 6.52344, 6.58594, 6.64844, 6.71094, 6.77344,
|
||||
(3,109): 6.83594, 6.89844, 6.96094, 7.02344, 7.08594, 7.14844, 7.21094,
|
||||
(3,116): 7.27344, 7.33594, 7.39844, 7.46094, 7.52344, 7.58594, 7.64844,
|
||||
(3,123): 7.71094, 7.77344, 7.83594, 7.89844, 7.96094,
|
||||
(4,0): 124, 0.09375, 0.15625, 0.21875, 0.28125, 0.34375, 0.40625,
|
||||
(4,7): 0.46875, 0.53125, 0.59375, 0.65625, 0.71875, 0.78125, 0.84375,
|
||||
(4,14): 0.90625, 0.96875, 1.03125, 1.09375, 1.15625, 1.21875, 1.28125,
|
||||
(4,21): 1.34375, 1.40625, 1.46875, 1.53125, 1.59375, 1.65625, 1.71875,
|
||||
(4,28): 1.78125, 1.84375, 1.90625, 1.96875, 2.03125, 2.09375, 2.15625,
|
||||
(4,35): 2.21875, 2.28125, 2.34375, 2.40625, 2.46875, 2.53125, 2.59375,
|
||||
(4,42): 2.65625, 2.71875, 2.78125, 2.84375, 2.90625, 2.96875, 3.03125,
|
||||
(4,49): 3.09375, 3.15625, 3.21875, 3.28125, 3.34375, 3.40625, 3.46875,
|
||||
(4,56): 3.53125, 3.59375, 3.65625, 3.71875, 3.78125, 3.84375, 3.90625,
|
||||
(4,63): 3.96875, 4.03125, 4.09375, 4.15625, 4.21875, 4.28125, 4.34375,
|
||||
(4,70): 4.40625, 4.46875, 4.53125, 4.59375, 4.65625, 4.71875, 4.78125,
|
||||
(4,77): 4.84375, 4.90625, 4.96875, 5.03125, 5.09375, 5.15625, 5.21875,
|
||||
(4,84): 5.28125, 5.34375, 5.40625, 5.46875, 5.53125, 5.59375, 5.65625,
|
||||
(4,91): 5.71875, 5.78125, 5.84375, 5.90625, 5.96875, 6.03125, 6.09375,
|
||||
(4,98): 6.15625, 6.21875, 6.28125, 6.34375, 6.40625, 6.46875, 6.53125,
|
||||
(4,105): 6.59375, 6.65625, 6.71875, 6.78125, 6.84375, 6.90625, 6.96875,
|
||||
(4,112): 7.03125, 7.09375, 7.15625, 7.21875, 7.28125, 7.34375, 7.40625,
|
||||
(4,119): 7.46875, 7.53125, 7.59375, 7.65625, 7.71875, 7.78125, 7.84375,
|
||||
(4,126): 7.90625, 7.96875,
|
||||
(5,0): 123, 0.101562, 0.164062, 0.226562, 0.289062, 0.351562, 0.414062,
|
||||
(5,7): 0.476562, 0.539062, 0.601562, 0.664062, 0.726562, 0.789062,
|
||||
(5,13): 0.851562, 0.914062, 0.976562, 1.03906, 1.10156, 1.16406,
|
||||
(5,19): 1.22656, 1.28906, 1.35156, 1.41406, 1.47656, 1.53906, 1.60156,
|
||||
(5,26): 1.66406, 1.72656, 1.78906, 1.85156, 1.91406, 1.97656, 2.03906,
|
||||
(5,33): 2.10156, 2.16406, 2.22656, 2.28906, 2.35156, 2.41406, 2.47656,
|
||||
(5,40): 2.53906, 2.60156, 2.66406, 2.72656, 2.78906, 2.85156, 2.91406,
|
||||
(5,47): 2.97656, 3.03906, 3.10156, 3.16406, 3.22656, 3.28906, 3.35156,
|
||||
(5,54): 3.41406, 3.47656, 3.53906, 3.60156, 3.66406, 3.72656, 3.78906,
|
||||
(5,61): 3.85156, 3.91406, 3.97656, 4.03906, 4.10156, 4.16406, 4.22656,
|
||||
(5,68): 4.28906, 4.35156, 4.41406, 4.47656, 4.53906, 4.60156, 4.66406,
|
||||
(5,75): 4.72656, 4.78906, 4.85156, 4.91406, 4.97656, 5.03906, 5.10156,
|
||||
(5,82): 5.16406, 5.22656, 5.28906, 5.35156, 5.41406, 5.47656, 5.53906,
|
||||
(5,89): 5.60156, 5.66406, 5.72656, 5.78906, 5.85156, 5.91406, 5.97656,
|
||||
(5,96): 6.03906, 6.10156, 6.16406, 6.22656, 6.28906, 6.35156, 6.41406,
|
||||
(5,103): 6.47656, 6.53906, 6.60156, 6.66406, 6.72656, 6.78906, 6.85156,
|
||||
(5,110): 6.91406, 6.97656, 7.03906, 7.10156, 7.16406, 7.22656, 7.28906,
|
||||
(5,117): 7.35156, 7.41406, 7.47656, 7.53906, 7.60156, 7.66406, 7.72656,
|
||||
(5,124): 7.78906, 7.85156, 7.91406, 7.97656,
|
||||
(6,0): 122, 0.109375, 0.171875, 0.234375, 0.296875, 0.359375, 0.421875,
|
||||
(6,7): 0.484375, 0.546875, 0.609375, 0.671875, 0.734375, 0.796875,
|
||||
(6,13): 0.859375, 0.921875, 0.984375, 1.04688, 1.10938, 1.17188,
|
||||
(6,19): 1.23438, 1.29688, 1.35938, 1.42188, 1.48438, 1.54688, 1.60938,
|
||||
(6,26): 1.67188, 1.73438, 1.79688, 1.85938, 1.92188, 1.98438, 2.04688,
|
||||
(6,33): 2.10938, 2.17188, 2.23438, 2.29688, 2.35938, 2.42188, 2.48438,
|
||||
(6,40): 2.54688, 2.60938, 2.67188, 2.73438, 2.79688, 2.85938, 2.92188,
|
||||
(6,47): 2.98438, 3.04688, 3.10938, 3.17188, 3.23438, 3.29688, 3.35938,
|
||||
(6,54): 3.42188, 3.48438, 3.54688, 3.60938, 3.67188, 3.73438, 3.79688,
|
||||
(6,61): 3.85938, 3.92188, 3.98438, 4.04688, 4.10938, 4.17188, 4.23438,
|
||||
(6,68): 4.29688, 4.35938, 4.42188, 4.48438, 4.54688, 4.60938, 4.67188,
|
||||
(6,75): 4.73438, 4.79688, 4.85938, 4.92188, 4.98438, 5.04688, 5.10938,
|
||||
(6,82): 5.17188, 5.23438, 5.29688, 5.35938, 5.42188, 5.48438, 5.54688,
|
||||
(6,89): 5.60938, 5.67188, 5.73438, 5.79688, 5.85938, 5.92188, 5.98438,
|
||||
(6,96): 6.04688, 6.10938, 6.17188, 6.23438, 6.29688, 6.35938, 6.42188,
|
||||
(6,103): 6.48438, 6.54688, 6.60938, 6.67188, 6.73438, 6.79688, 6.85938,
|
||||
(6,110): 6.92188, 6.98438, 7.04688, 7.10938, 7.17188, 7.23438, 7.29688,
|
||||
(6,117): 7.35938, 7.42188, 7.48438, 7.54688, 7.60938, 7.67188, 7.73438,
|
||||
(6,124): 7.79688, 7.85938, 7.92188, 7.98438,
|
||||
(7,0): 121, 0.117188, 0.179688, 0.242188, 0.304688, 0.367188, 0.429688,
|
||||
(7,7): 0.492188, 0.554688, 0.617188, 0.679688, 0.742188, 0.804688,
|
||||
(7,13): 0.867188, 0.929688, 0.992188, 1.05469, 1.11719, 1.17969,
|
||||
(7,19): 1.24219, 1.30469, 1.36719, 1.42969, 1.49219, 1.55469, 1.61719,
|
||||
(7,26): 1.67969, 1.74219, 1.80469, 1.86719, 1.92969, 1.99219, 2.05469,
|
||||
(7,33): 2.11719, 2.17969, 2.24219, 2.30469, 2.36719, 2.42969, 2.49219,
|
||||
(7,40): 2.55469, 2.61719, 2.67969, 2.74219, 2.80469, 2.86719, 2.92969,
|
||||
(7,47): 2.99219, 3.05469, 3.11719, 3.17969, 3.24219, 3.30469, 3.36719,
|
||||
(7,54): 3.42969, 3.49219, 3.55469, 3.61719, 3.67969, 3.74219, 3.80469,
|
||||
(7,61): 3.86719, 3.92969, 3.99219, 4.05469, 4.11719, 4.17969, 4.24219,
|
||||
(7,68): 4.30469, 4.36719, 4.42969, 4.49219, 4.55469, 4.61719, 4.67969,
|
||||
(7,75): 4.74219, 4.80469, 4.86719, 4.92969, 4.99219, 5.05469, 5.11719,
|
||||
(7,82): 5.17969, 5.24219, 5.30469, 5.36719, 5.42969, 5.49219, 5.55469,
|
||||
(7,89): 5.61719, 5.67969, 5.74219, 5.80469, 5.86719, 5.92969, 5.99219,
|
||||
(7,96): 6.05469, 6.11719, 6.17969, 6.24219, 6.30469, 6.36719, 6.42969,
|
||||
(7,103): 6.49219, 6.55469, 6.61719, 6.67969, 6.74219, 6.80469, 6.86719,
|
||||
(7,110): 6.92969, 6.99219, 7.05469, 7.11719, 7.17969, 7.24219, 7.30469,
|
||||
(7,117): 7.36719, 7.42969, 7.49219, 7.55469, 7.61719, 7.67969, 7.74219,
|
||||
(7,124): 7.80469, 7.86719, 7.92969, 7.99219
|
||||
(0,9): 0.5625, 0.625, 0.6875, 0.75, 0.8125, 0.875, 0.9375, 1, 1.062,
|
||||
(0,18): 1.125, 1.188, 1.25, 1.312, 1.375, 1.438, 1.5, 1.562, 1.625,
|
||||
(0,27): 1.688, 1.75, 1.812, 1.875, 1.938, 2, 2.062, 2.125, 2.188, 2.25,
|
||||
(0,37): 2.312, 2.375, 2.438, 2.5, 2.562, 2.625, 2.688, 2.75, 2.812,
|
||||
(0,46): 2.875, 2.938, 3, 3.062, 3.125, 3.188, 3.25, 3.312, 3.375,
|
||||
(0,55): 3.438, 3.5, 3.562, 3.625, 3.688, 3.75, 3.812, 3.875, 3.938, 4,
|
||||
(0,65): 4.062, 4.125, 4.188, 4.25, 4.312, 4.375, 4.438, 4.5, 4.562,
|
||||
(0,74): 4.625, 4.688, 4.75, 4.812, 4.875, 4.938, 5, 5.062, 5.125,
|
||||
(0,83): 5.188, 5.25, 5.312, 5.375, 5.438, 5.5, 5.562, 5.625, 5.688,
|
||||
(0,92): 5.75, 5.812, 5.875, 5.938, 6, 6.062, 6.125, 6.188, 6.25, 6.312,
|
||||
(0,102): 6.375, 6.438, 6.5, 6.562, 6.625, 6.688, 6.75, 6.812, 6.875,
|
||||
(0,111): 6.938, 7, 7.062, 7.125, 7.188, 7.25, 7.312, 7.375, 7.438, 7.5,
|
||||
(0,121): 7.562, 7.625, 7.688, 7.75, 7.812, 7.875, 7.938,
|
||||
(1,0): 127, 0.07031, 0.1328, 0.1953, 0.2578, 0.3203, 0.3828, 0.4453,
|
||||
(1,8): 0.5078, 0.5703, 0.6328, 0.6953, 0.7578, 0.8203, 0.8828, 0.9453,
|
||||
(1,16): 1.008, 1.07, 1.133, 1.195, 1.258, 1.32, 1.383, 1.445, 1.508,
|
||||
(1,25): 1.57, 1.633, 1.695, 1.758, 1.82, 1.883, 1.945, 2.008, 2.07,
|
||||
(1,34): 2.133, 2.195, 2.258, 2.32, 2.383, 2.445, 2.508, 2.57, 2.633,
|
||||
(1,43): 2.695, 2.758, 2.82, 2.883, 2.945, 3.008, 3.07, 3.133, 3.195,
|
||||
(1,52): 3.258, 3.32, 3.383, 3.445, 3.508, 3.57, 3.633, 3.695, 3.758,
|
||||
(1,61): 3.82, 3.883, 3.945, 4.008, 4.07, 4.133, 4.195, 4.258, 4.32,
|
||||
(1,70): 4.383, 4.445, 4.508, 4.57, 4.633, 4.695, 4.758, 4.82, 4.883,
|
||||
(1,79): 4.945, 5.008, 5.07, 5.133, 5.195, 5.258, 5.32, 5.383, 5.445,
|
||||
(1,88): 5.508, 5.57, 5.633, 5.695, 5.758, 5.82, 5.883, 5.945, 6.008,
|
||||
(1,97): 6.07, 6.133, 6.195, 6.258, 6.32, 6.383, 6.445, 6.508, 6.57,
|
||||
(1,106): 6.633, 6.695, 6.758, 6.82, 6.883, 6.945, 7.008, 7.07, 7.133,
|
||||
(1,115): 7.195, 7.258, 7.32, 7.383, 7.445, 7.508, 7.57, 7.633, 7.695,
|
||||
(1,124): 7.758, 7.82, 7.883, 7.945,
|
||||
(2,0): 126, 0.07812, 0.1406, 0.2031, 0.2656, 0.3281, 0.3906, 0.4531,
|
||||
(2,8): 0.5156, 0.5781, 0.6406, 0.7031, 0.7656, 0.8281, 0.8906, 0.9531,
|
||||
(2,16): 1.016, 1.078, 1.141, 1.203, 1.266, 1.328, 1.391, 1.453, 1.516,
|
||||
(2,25): 1.578, 1.641, 1.703, 1.766, 1.828, 1.891, 1.953, 2.016, 2.078,
|
||||
(2,34): 2.141, 2.203, 2.266, 2.328, 2.391, 2.453, 2.516, 2.578, 2.641,
|
||||
(2,43): 2.703, 2.766, 2.828, 2.891, 2.953, 3.016, 3.078, 3.141, 3.203,
|
||||
(2,52): 3.266, 3.328, 3.391, 3.453, 3.516, 3.578, 3.641, 3.703, 3.766,
|
||||
(2,61): 3.828, 3.891, 3.953, 4.016, 4.078, 4.141, 4.203, 4.266, 4.328,
|
||||
(2,70): 4.391, 4.453, 4.516, 4.578, 4.641, 4.703, 4.766, 4.828, 4.891,
|
||||
(2,79): 4.953, 5.016, 5.078, 5.141, 5.203, 5.266, 5.328, 5.391, 5.453,
|
||||
(2,88): 5.516, 5.578, 5.641, 5.703, 5.766, 5.828, 5.891, 5.953, 6.016,
|
||||
(2,97): 6.078, 6.141, 6.203, 6.266, 6.328, 6.391, 6.453, 6.516, 6.578,
|
||||
(2,106): 6.641, 6.703, 6.766, 6.828, 6.891, 6.953, 7.016, 7.078, 7.141,
|
||||
(2,115): 7.203, 7.266, 7.328, 7.391, 7.453, 7.516, 7.578, 7.641, 7.703,
|
||||
(2,124): 7.766, 7.828, 7.891, 7.953,
|
||||
(3,0): 125, 0.08594, 0.1484, 0.2109, 0.2734, 0.3359, 0.3984, 0.4609,
|
||||
(3,8): 0.5234, 0.5859, 0.6484, 0.7109, 0.7734, 0.8359, 0.8984, 0.9609,
|
||||
(3,16): 1.023, 1.086, 1.148, 1.211, 1.273, 1.336, 1.398, 1.461, 1.523,
|
||||
(3,25): 1.586, 1.648, 1.711, 1.773, 1.836, 1.898, 1.961, 2.023, 2.086,
|
||||
(3,34): 2.148, 2.211, 2.273, 2.336, 2.398, 2.461, 2.523, 2.586, 2.648,
|
||||
(3,43): 2.711, 2.773, 2.836, 2.898, 2.961, 3.023, 3.086, 3.148, 3.211,
|
||||
(3,52): 3.273, 3.336, 3.398, 3.461, 3.523, 3.586, 3.648, 3.711, 3.773,
|
||||
(3,61): 3.836, 3.898, 3.961, 4.023, 4.086, 4.148, 4.211, 4.273, 4.336,
|
||||
(3,70): 4.398, 4.461, 4.523, 4.586, 4.648, 4.711, 4.773, 4.836, 4.898,
|
||||
(3,79): 4.961, 5.023, 5.086, 5.148, 5.211, 5.273, 5.336, 5.398, 5.461,
|
||||
(3,88): 5.523, 5.586, 5.648, 5.711, 5.773, 5.836, 5.898, 5.961, 6.023,
|
||||
(3,97): 6.086, 6.148, 6.211, 6.273, 6.336, 6.398, 6.461, 6.523, 6.586,
|
||||
(3,106): 6.648, 6.711, 6.773, 6.836, 6.898, 6.961, 7.023, 7.086, 7.148,
|
||||
(3,115): 7.211, 7.273, 7.336, 7.398, 7.461, 7.523, 7.586, 7.648, 7.711,
|
||||
(3,124): 7.773, 7.836, 7.898, 7.961,
|
||||
(4,0): 124, 0.09375, 0.1562, 0.2188, 0.2812, 0.3438, 0.4062, 0.4688,
|
||||
(4,8): 0.5312, 0.5938, 0.6562, 0.7188, 0.7812, 0.8438, 0.9062, 0.9688,
|
||||
(4,16): 1.031, 1.094, 1.156, 1.219, 1.281, 1.344, 1.406, 1.469, 1.531,
|
||||
(4,25): 1.594, 1.656, 1.719, 1.781, 1.844, 1.906, 1.969, 2.031, 2.094,
|
||||
(4,34): 2.156, 2.219, 2.281, 2.344, 2.406, 2.469, 2.531, 2.594, 2.656,
|
||||
(4,43): 2.719, 2.781, 2.844, 2.906, 2.969, 3.031, 3.094, 3.156, 3.219,
|
||||
(4,52): 3.281, 3.344, 3.406, 3.469, 3.531, 3.594, 3.656, 3.719, 3.781,
|
||||
(4,61): 3.844, 3.906, 3.969, 4.031, 4.094, 4.156, 4.219, 4.281, 4.344,
|
||||
(4,70): 4.406, 4.469, 4.531, 4.594, 4.656, 4.719, 4.781, 4.844, 4.906,
|
||||
(4,79): 4.969, 5.031, 5.094, 5.156, 5.219, 5.281, 5.344, 5.406, 5.469,
|
||||
(4,88): 5.531, 5.594, 5.656, 5.719, 5.781, 5.844, 5.906, 5.969, 6.031,
|
||||
(4,97): 6.094, 6.156, 6.219, 6.281, 6.344, 6.406, 6.469, 6.531, 6.594,
|
||||
(4,106): 6.656, 6.719, 6.781, 6.844, 6.906, 6.969, 7.031, 7.094, 7.156,
|
||||
(4,115): 7.219, 7.281, 7.344, 7.406, 7.469, 7.531, 7.594, 7.656, 7.719,
|
||||
(4,124): 7.781, 7.844, 7.906, 7.969,
|
||||
(5,0): 123, 0.1016, 0.1641, 0.2266, 0.2891, 0.3516, 0.4141, 0.4766,
|
||||
(5,8): 0.5391, 0.6016, 0.6641, 0.7266, 0.7891, 0.8516, 0.9141, 0.9766,
|
||||
(5,16): 1.039, 1.102, 1.164, 1.227, 1.289, 1.352, 1.414, 1.477, 1.539,
|
||||
(5,25): 1.602, 1.664, 1.727, 1.789, 1.852, 1.914, 1.977, 2.039, 2.102,
|
||||
(5,34): 2.164, 2.227, 2.289, 2.352, 2.414, 2.477, 2.539, 2.602, 2.664,
|
||||
(5,43): 2.727, 2.789, 2.852, 2.914, 2.977, 3.039, 3.102, 3.164, 3.227,
|
||||
(5,52): 3.289, 3.352, 3.414, 3.477, 3.539, 3.602, 3.664, 3.727, 3.789,
|
||||
(5,61): 3.852, 3.914, 3.977, 4.039, 4.102, 4.164, 4.227, 4.289, 4.352,
|
||||
(5,70): 4.414, 4.477, 4.539, 4.602, 4.664, 4.727, 4.789, 4.852, 4.914,
|
||||
(5,79): 4.977, 5.039, 5.102, 5.164, 5.227, 5.289, 5.352, 5.414, 5.477,
|
||||
(5,88): 5.539, 5.602, 5.664, 5.727, 5.789, 5.852, 5.914, 5.977, 6.039,
|
||||
(5,97): 6.102, 6.164, 6.227, 6.289, 6.352, 6.414, 6.477, 6.539, 6.602,
|
||||
(5,106): 6.664, 6.727, 6.789, 6.852, 6.914, 6.977, 7.039, 7.102, 7.164,
|
||||
(5,115): 7.227, 7.289, 7.352, 7.414, 7.477, 7.539, 7.602, 7.664, 7.727,
|
||||
(5,124): 7.789, 7.852, 7.914, 7.977,
|
||||
(6,0): 122, 0.1094, 0.1719, 0.2344, 0.2969, 0.3594, 0.4219, 0.4844,
|
||||
(6,8): 0.5469, 0.6094, 0.6719, 0.7344, 0.7969, 0.8594, 0.9219, 0.9844,
|
||||
(6,16): 1.047, 1.109, 1.172, 1.234, 1.297, 1.359, 1.422, 1.484, 1.547,
|
||||
(6,25): 1.609, 1.672, 1.734, 1.797, 1.859, 1.922, 1.984, 2.047, 2.109,
|
||||
(6,34): 2.172, 2.234, 2.297, 2.359, 2.422, 2.484, 2.547, 2.609, 2.672,
|
||||
(6,43): 2.734, 2.797, 2.859, 2.922, 2.984, 3.047, 3.109, 3.172, 3.234,
|
||||
(6,52): 3.297, 3.359, 3.422, 3.484, 3.547, 3.609, 3.672, 3.734, 3.797,
|
||||
(6,61): 3.859, 3.922, 3.984, 4.047, 4.109, 4.172, 4.234, 4.297, 4.359,
|
||||
(6,70): 4.422, 4.484, 4.547, 4.609, 4.672, 4.734, 4.797, 4.859, 4.922,
|
||||
(6,79): 4.984, 5.047, 5.109, 5.172, 5.234, 5.297, 5.359, 5.422, 5.484,
|
||||
(6,88): 5.547, 5.609, 5.672, 5.734, 5.797, 5.859, 5.922, 5.984, 6.047,
|
||||
(6,97): 6.109, 6.172, 6.234, 6.297, 6.359, 6.422, 6.484, 6.547, 6.609,
|
||||
(6,106): 6.672, 6.734, 6.797, 6.859, 6.922, 6.984, 7.047, 7.109, 7.172,
|
||||
(6,115): 7.234, 7.297, 7.359, 7.422, 7.484, 7.547, 7.609, 7.672, 7.734,
|
||||
(6,124): 7.797, 7.859, 7.922, 7.984,
|
||||
(7,0): 121, 0.1172, 0.1797, 0.2422, 0.3047, 0.3672, 0.4297, 0.4922,
|
||||
(7,8): 0.5547, 0.6172, 0.6797, 0.7422, 0.8047, 0.8672, 0.9297, 0.9922,
|
||||
(7,16): 1.055, 1.117, 1.18, 1.242, 1.305, 1.367, 1.43, 1.492, 1.555,
|
||||
(7,25): 1.617, 1.68, 1.742, 1.805, 1.867, 1.93, 1.992, 2.055, 2.117,
|
||||
(7,34): 2.18, 2.242, 2.305, 2.367, 2.43, 2.492, 2.555, 2.617, 2.68,
|
||||
(7,43): 2.742, 2.805, 2.867, 2.93, 2.992, 3.055, 3.117, 3.18, 3.242,
|
||||
(7,52): 3.305, 3.367, 3.43, 3.492, 3.555, 3.617, 3.68, 3.742, 3.805,
|
||||
(7,61): 3.867, 3.93, 3.992, 4.055, 4.117, 4.18, 4.242, 4.305, 4.367,
|
||||
(7,70): 4.43, 4.492, 4.555, 4.617, 4.68, 4.742, 4.805, 4.867, 4.93,
|
||||
(7,79): 4.992, 5.055, 5.117, 5.18, 5.242, 5.305, 5.367, 5.43, 5.492,
|
||||
(7,88): 5.555, 5.617, 5.68, 5.742, 5.805, 5.867, 5.93, 5.992, 6.055,
|
||||
(7,97): 6.117, 6.18, 6.242, 6.305, 6.367, 6.43, 6.492, 6.555, 6.617,
|
||||
(7,106): 6.68, 6.742, 6.805, 6.867, 6.93, 6.992, 7.055, 7.117, 7.18,
|
||||
(7,115): 7.242, 7.305, 7.367, 7.43, 7.492, 7.555, 7.617, 7.68, 7.742,
|
||||
(7,124): 7.805, 7.867, 7.93, 7.992
|
||||
}
|
||||
ATTRIBUTE "DS128BITS" {
|
||||
DATATYPE 128-bit little-endian floating-point 80-bit precision
|
||||
DATASPACE SIMPLE { ( 1024 ) / ( 1024 ) }
|
||||
DATA {
|
||||
(0): 128, 0.0625, 0.125, 0.1875, 0.25, 0.3125, 0.375, 0.4375, 0.5,
|
||||
(9): 0.5625, 0.625, 0.6875, 0.75, 0.8125, 0.875, 0.9375, 1, 1.0625,
|
||||
(18): 1.125, 1.1875, 1.25, 1.3125, 1.375, 1.4375, 1.5, 1.5625,
|
||||
(26): 1.625, 1.6875, 1.75, 1.8125, 1.875, 1.9375, 2, 2.0625, 2.125,
|
||||
(35): 2.1875, 2.25, 2.3125, 2.375, 2.4375, 2.5, 2.5625, 2.625,
|
||||
(43): 2.6875, 2.75, 2.8125, 2.875, 2.9375, 3, 3.0625, 3.125, 3.1875,
|
||||
(52): 3.25, 3.3125, 3.375, 3.4375, 3.5, 3.5625, 3.625, 3.6875, 3.75,
|
||||
(61): 3.8125, 3.875, 3.9375, 4, 4.0625, 4.125, 4.1875, 4.25, 4.3125,
|
||||
(70): 4.375, 4.4375, 4.5, 4.5625, 4.625, 4.6875, 4.75, 4.8125,
|
||||
(78): 4.875, 4.9375, 5, 5.0625, 5.125, 5.1875, 5.25, 5.3125, 5.375,
|
||||
(87): 5.4375, 5.5, 5.5625, 5.625, 5.6875, 5.75, 5.8125, 5.875,
|
||||
(95): 5.9375, 6, 6.0625, 6.125, 6.1875, 6.25, 6.3125, 6.375, 6.4375,
|
||||
(104): 6.5, 6.5625, 6.625, 6.6875, 6.75, 6.8125, 6.875, 6.9375, 7,
|
||||
(113): 7.0625, 7.125, 7.1875, 7.25, 7.3125, 7.375, 7.4375, 7.5,
|
||||
(121): 7.5625, 7.625, 7.6875, 7.75, 7.8125, 7.875, 7.9375, 127,
|
||||
(129): 0.0703125, 0.132812, 0.195312, 0.257812, 0.320312, 0.382812,
|
||||
(135): 0.445312, 0.507812, 0.570312, 0.632812, 0.695312, 0.757812,
|
||||
(141): 0.820312, 0.882812, 0.945312, 1.00781, 1.07031, 1.13281,
|
||||
(147): 1.19531, 1.25781, 1.32031, 1.38281, 1.44531, 1.50781,
|
||||
(153): 1.57031, 1.63281, 1.69531, 1.75781, 1.82031, 1.88281,
|
||||
(159): 1.94531, 2.00781, 2.07031, 2.13281, 2.19531, 2.25781,
|
||||
(165): 2.32031, 2.38281, 2.44531, 2.50781, 2.57031, 2.63281,
|
||||
(171): 2.69531, 2.75781, 2.82031, 2.88281, 2.94531, 3.00781,
|
||||
(177): 3.07031, 3.13281, 3.19531, 3.25781, 3.32031, 3.38281,
|
||||
(183): 3.44531, 3.50781, 3.57031, 3.63281, 3.69531, 3.75781,
|
||||
(189): 3.82031, 3.88281, 3.94531, 4.00781, 4.07031, 4.13281,
|
||||
(195): 4.19531, 4.25781, 4.32031, 4.38281, 4.44531, 4.50781,
|
||||
(201): 4.57031, 4.63281, 4.69531, 4.75781, 4.82031, 4.88281,
|
||||
(207): 4.94531, 5.00781, 5.07031, 5.13281, 5.19531, 5.25781,
|
||||
(213): 5.32031, 5.38281, 5.44531, 5.50781, 5.57031, 5.63281,
|
||||
(219): 5.69531, 5.75781, 5.82031, 5.88281, 5.94531, 6.00781,
|
||||
(225): 6.07031, 6.13281, 6.19531, 6.25781, 6.32031, 6.38281,
|
||||
(231): 6.44531, 6.50781, 6.57031, 6.63281, 6.69531, 6.75781,
|
||||
(237): 6.82031, 6.88281, 6.94531, 7.00781, 7.07031, 7.13281,
|
||||
(243): 7.19531, 7.25781, 7.32031, 7.38281, 7.44531, 7.50781,
|
||||
(249): 7.57031, 7.63281, 7.69531, 7.75781, 7.82031, 7.88281,
|
||||
(255): 7.94531, 126, 0.078125, 0.140625, 0.203125, 0.265625,
|
||||
(261): 0.328125, 0.390625, 0.453125, 0.515625, 0.578125, 0.640625,
|
||||
(267): 0.703125, 0.765625, 0.828125, 0.890625, 0.953125, 1.01562,
|
||||
(273): 1.07812, 1.14062, 1.20312, 1.26562, 1.32812, 1.39062,
|
||||
(279): 1.45312, 1.51562, 1.57812, 1.64062, 1.70312, 1.76562,
|
||||
(285): 1.82812, 1.89062, 1.95312, 2.01562, 2.07812, 2.14062,
|
||||
(291): 2.20312, 2.26562, 2.32812, 2.39062, 2.45312, 2.51562,
|
||||
(297): 2.57812, 2.64062, 2.70312, 2.76562, 2.82812, 2.89062,
|
||||
(303): 2.95312, 3.01562, 3.07812, 3.14062, 3.20312, 3.26562,
|
||||
(309): 3.32812, 3.39062, 3.45312, 3.51562, 3.57812, 3.64062,
|
||||
(315): 3.70312, 3.76562, 3.82812, 3.89062, 3.95312, 4.01562,
|
||||
(321): 4.07812, 4.14062, 4.20312, 4.26562, 4.32812, 4.39062,
|
||||
(327): 4.45312, 4.51562, 4.57812, 4.64062, 4.70312, 4.76562,
|
||||
(333): 4.82812, 4.89062, 4.95312, 5.01562, 5.07812, 5.14062,
|
||||
(339): 5.20312, 5.26562, 5.32812, 5.39062, 5.45312, 5.51562,
|
||||
(345): 5.57812, 5.64062, 5.70312, 5.76562, 5.82812, 5.89062,
|
||||
(351): 5.95312, 6.01562, 6.07812, 6.14062, 6.20312, 6.26562,
|
||||
(357): 6.32812, 6.39062, 6.45312, 6.51562, 6.57812, 6.64062,
|
||||
(363): 6.70312, 6.76562, 6.82812, 6.89062, 6.95312, 7.01562,
|
||||
(369): 7.07812, 7.14062, 7.20312, 7.26562, 7.32812, 7.39062,
|
||||
(375): 7.45312, 7.51562, 7.57812, 7.64062, 7.70312, 7.76562,
|
||||
(381): 7.82812, 7.89062, 7.95312, 125, 0.0859375, 0.148438,
|
||||
(387): 0.210938, 0.273438, 0.335938, 0.398438, 0.460938, 0.523438,
|
||||
(393): 0.585938, 0.648438, 0.710938, 0.773438, 0.835938, 0.898438,
|
||||
(399): 0.960938, 1.02344, 1.08594, 1.14844, 1.21094, 1.27344,
|
||||
(405): 1.33594, 1.39844, 1.46094, 1.52344, 1.58594, 1.64844,
|
||||
(411): 1.71094, 1.77344, 1.83594, 1.89844, 1.96094, 2.02344,
|
||||
(417): 2.08594, 2.14844, 2.21094, 2.27344, 2.33594, 2.39844,
|
||||
(423): 2.46094, 2.52344, 2.58594, 2.64844, 2.71094, 2.77344,
|
||||
(429): 2.83594, 2.89844, 2.96094, 3.02344, 3.08594, 3.14844,
|
||||
(435): 3.21094, 3.27344, 3.33594, 3.39844, 3.46094, 3.52344,
|
||||
(441): 3.58594, 3.64844, 3.71094, 3.77344, 3.83594, 3.89844,
|
||||
(447): 3.96094, 4.02344, 4.08594, 4.14844, 4.21094, 4.27344,
|
||||
(453): 4.33594, 4.39844, 4.46094, 4.52344, 4.58594, 4.64844,
|
||||
(459): 4.71094, 4.77344, 4.83594, 4.89844, 4.96094, 5.02344,
|
||||
(465): 5.08594, 5.14844, 5.21094, 5.27344, 5.33594, 5.39844,
|
||||
(471): 5.46094, 5.52344, 5.58594, 5.64844, 5.71094, 5.77344,
|
||||
(477): 5.83594, 5.89844, 5.96094, 6.02344, 6.08594, 6.14844,
|
||||
(483): 6.21094, 6.27344, 6.33594, 6.39844, 6.46094, 6.52344,
|
||||
(489): 6.58594, 6.64844, 6.71094, 6.77344, 6.83594, 6.89844,
|
||||
(495): 6.96094, 7.02344, 7.08594, 7.14844, 7.21094, 7.27344,
|
||||
(501): 7.33594, 7.39844, 7.46094, 7.52344, 7.58594, 7.64844,
|
||||
(507): 7.71094, 7.77344, 7.83594, 7.89844, 7.96094, 124, 0.09375,
|
||||
(514): 0.15625, 0.21875, 0.28125, 0.34375, 0.40625, 0.46875,
|
||||
(520): 0.53125, 0.59375, 0.65625, 0.71875, 0.78125, 0.84375,
|
||||
(526): 0.90625, 0.96875, 1.03125, 1.09375, 1.15625, 1.21875,
|
||||
(532): 1.28125, 1.34375, 1.40625, 1.46875, 1.53125, 1.59375,
|
||||
(538): 1.65625, 1.71875, 1.78125, 1.84375, 1.90625, 1.96875,
|
||||
(544): 2.03125, 2.09375, 2.15625, 2.21875, 2.28125, 2.34375,
|
||||
(550): 2.40625, 2.46875, 2.53125, 2.59375, 2.65625, 2.71875,
|
||||
(556): 2.78125, 2.84375, 2.90625, 2.96875, 3.03125, 3.09375,
|
||||
(562): 3.15625, 3.21875, 3.28125, 3.34375, 3.40625, 3.46875,
|
||||
(568): 3.53125, 3.59375, 3.65625, 3.71875, 3.78125, 3.84375,
|
||||
(574): 3.90625, 3.96875, 4.03125, 4.09375, 4.15625, 4.21875,
|
||||
(580): 4.28125, 4.34375, 4.40625, 4.46875, 4.53125, 4.59375,
|
||||
(586): 4.65625, 4.71875, 4.78125, 4.84375, 4.90625, 4.96875,
|
||||
(592): 5.03125, 5.09375, 5.15625, 5.21875, 5.28125, 5.34375,
|
||||
(598): 5.40625, 5.46875, 5.53125, 5.59375, 5.65625, 5.71875,
|
||||
(604): 5.78125, 5.84375, 5.90625, 5.96875, 6.03125, 6.09375,
|
||||
(610): 6.15625, 6.21875, 6.28125, 6.34375, 6.40625, 6.46875,
|
||||
(616): 6.53125, 6.59375, 6.65625, 6.71875, 6.78125, 6.84375,
|
||||
(622): 6.90625, 6.96875, 7.03125, 7.09375, 7.15625, 7.21875,
|
||||
(628): 7.28125, 7.34375, 7.40625, 7.46875, 7.53125, 7.59375,
|
||||
(634): 7.65625, 7.71875, 7.78125, 7.84375, 7.90625, 7.96875, 123,
|
||||
(641): 0.101562, 0.164062, 0.226562, 0.289062, 0.351562, 0.414062,
|
||||
(647): 0.476562, 0.539062, 0.601562, 0.664062, 0.726562, 0.789062,
|
||||
(653): 0.851562, 0.914062, 0.976562, 1.03906, 1.10156, 1.16406,
|
||||
(659): 1.22656, 1.28906, 1.35156, 1.41406, 1.47656, 1.53906,
|
||||
(665): 1.60156, 1.66406, 1.72656, 1.78906, 1.85156, 1.91406,
|
||||
(671): 1.97656, 2.03906, 2.10156, 2.16406, 2.22656, 2.28906,
|
||||
(677): 2.35156, 2.41406, 2.47656, 2.53906, 2.60156, 2.66406,
|
||||
(683): 2.72656, 2.78906, 2.85156, 2.91406, 2.97656, 3.03906,
|
||||
(689): 3.10156, 3.16406, 3.22656, 3.28906, 3.35156, 3.41406,
|
||||
(695): 3.47656, 3.53906, 3.60156, 3.66406, 3.72656, 3.78906,
|
||||
(701): 3.85156, 3.91406, 3.97656, 4.03906, 4.10156, 4.16406,
|
||||
(707): 4.22656, 4.28906, 4.35156, 4.41406, 4.47656, 4.53906,
|
||||
(713): 4.60156, 4.66406, 4.72656, 4.78906, 4.85156, 4.91406,
|
||||
(719): 4.97656, 5.03906, 5.10156, 5.16406, 5.22656, 5.28906,
|
||||
(725): 5.35156, 5.41406, 5.47656, 5.53906, 5.60156, 5.66406,
|
||||
(731): 5.72656, 5.78906, 5.85156, 5.91406, 5.97656, 6.03906,
|
||||
(737): 6.10156, 6.16406, 6.22656, 6.28906, 6.35156, 6.41406,
|
||||
(743): 6.47656, 6.53906, 6.60156, 6.66406, 6.72656, 6.78906,
|
||||
(749): 6.85156, 6.91406, 6.97656, 7.03906, 7.10156, 7.16406,
|
||||
(755): 7.22656, 7.28906, 7.35156, 7.41406, 7.47656, 7.53906,
|
||||
(761): 7.60156, 7.66406, 7.72656, 7.78906, 7.85156, 7.91406,
|
||||
(767): 7.97656, 122, 0.109375, 0.171875, 0.234375, 0.296875,
|
||||
(773): 0.359375, 0.421875, 0.484375, 0.546875, 0.609375, 0.671875,
|
||||
(779): 0.734375, 0.796875, 0.859375, 0.921875, 0.984375, 1.04688,
|
||||
(785): 1.10938, 1.17188, 1.23438, 1.29688, 1.35938, 1.42188,
|
||||
(791): 1.48438, 1.54688, 1.60938, 1.67188, 1.73438, 1.79688,
|
||||
(797): 1.85938, 1.92188, 1.98438, 2.04688, 2.10938, 2.17188,
|
||||
(803): 2.23438, 2.29688, 2.35938, 2.42188, 2.48438, 2.54688,
|
||||
(809): 2.60938, 2.67188, 2.73438, 2.79688, 2.85938, 2.92188,
|
||||
(815): 2.98438, 3.04688, 3.10938, 3.17188, 3.23438, 3.29688,
|
||||
(821): 3.35938, 3.42188, 3.48438, 3.54688, 3.60938, 3.67188,
|
||||
(827): 3.73438, 3.79688, 3.85938, 3.92188, 3.98438, 4.04688,
|
||||
(833): 4.10938, 4.17188, 4.23438, 4.29688, 4.35938, 4.42188,
|
||||
(839): 4.48438, 4.54688, 4.60938, 4.67188, 4.73438, 4.79688,
|
||||
(845): 4.85938, 4.92188, 4.98438, 5.04688, 5.10938, 5.17188,
|
||||
(851): 5.23438, 5.29688, 5.35938, 5.42188, 5.48438, 5.54688,
|
||||
(857): 5.60938, 5.67188, 5.73438, 5.79688, 5.85938, 5.92188,
|
||||
(863): 5.98438, 6.04688, 6.10938, 6.17188, 6.23438, 6.29688,
|
||||
(869): 6.35938, 6.42188, 6.48438, 6.54688, 6.60938, 6.67188,
|
||||
(875): 6.73438, 6.79688, 6.85938, 6.92188, 6.98438, 7.04688,
|
||||
(881): 7.10938, 7.17188, 7.23438, 7.29688, 7.35938, 7.42188,
|
||||
(887): 7.48438, 7.54688, 7.60938, 7.67188, 7.73438, 7.79688,
|
||||
(893): 7.85938, 7.92188, 7.98438, 121, 0.117188, 0.179688, 0.242188,
|
||||
(900): 0.304688, 0.367188, 0.429688, 0.492188, 0.554688, 0.617188,
|
||||
(906): 0.679688, 0.742188, 0.804688, 0.867188, 0.929688, 0.992188,
|
||||
(912): 1.05469, 1.11719, 1.17969, 1.24219, 1.30469, 1.36719,
|
||||
(918): 1.42969, 1.49219, 1.55469, 1.61719, 1.67969, 1.74219,
|
||||
(924): 1.80469, 1.86719, 1.92969, 1.99219, 2.05469, 2.11719,
|
||||
(930): 2.17969, 2.24219, 2.30469, 2.36719, 2.42969, 2.49219,
|
||||
(936): 2.55469, 2.61719, 2.67969, 2.74219, 2.80469, 2.86719,
|
||||
(942): 2.92969, 2.99219, 3.05469, 3.11719, 3.17969, 3.24219,
|
||||
(948): 3.30469, 3.36719, 3.42969, 3.49219, 3.55469, 3.61719,
|
||||
(954): 3.67969, 3.74219, 3.80469, 3.86719, 3.92969, 3.99219,
|
||||
(960): 4.05469, 4.11719, 4.17969, 4.24219, 4.30469, 4.36719,
|
||||
(966): 4.42969, 4.49219, 4.55469, 4.61719, 4.67969, 4.74219,
|
||||
(972): 4.80469, 4.86719, 4.92969, 4.99219, 5.05469, 5.11719,
|
||||
(978): 5.17969, 5.24219, 5.30469, 5.36719, 5.42969, 5.49219,
|
||||
(984): 5.55469, 5.61719, 5.67969, 5.74219, 5.80469, 5.86719,
|
||||
(990): 5.92969, 5.99219, 6.05469, 6.11719, 6.17969, 6.24219,
|
||||
(996): 6.30469, 6.36719, 6.42969, 6.49219, 6.55469, 6.61719,
|
||||
(1002): 6.67969, 6.74219, 6.80469, 6.86719, 6.92969, 6.99219,
|
||||
(1008): 7.05469, 7.11719, 7.17969, 7.24219, 7.30469, 7.36719,
|
||||
(1014): 7.42969, 7.49219, 7.55469, 7.61719, 7.67969, 7.74219,
|
||||
(1020): 7.80469, 7.86719, 7.92969, 7.99219
|
||||
(9): 0.5625, 0.625, 0.6875, 0.75, 0.8125, 0.875, 0.9375, 1, 1.062,
|
||||
(18): 1.125, 1.188, 1.25, 1.312, 1.375, 1.438, 1.5, 1.562, 1.625,
|
||||
(27): 1.688, 1.75, 1.812, 1.875, 1.938, 2, 2.062, 2.125, 2.188,
|
||||
(36): 2.25, 2.312, 2.375, 2.438, 2.5, 2.562, 2.625, 2.688, 2.75,
|
||||
(45): 2.812, 2.875, 2.938, 3, 3.062, 3.125, 3.188, 3.25, 3.312,
|
||||
(54): 3.375, 3.438, 3.5, 3.562, 3.625, 3.688, 3.75, 3.812, 3.875,
|
||||
(63): 3.938, 4, 4.062, 4.125, 4.188, 4.25, 4.312, 4.375, 4.438, 4.5,
|
||||
(73): 4.562, 4.625, 4.688, 4.75, 4.812, 4.875, 4.938, 5, 5.062,
|
||||
(82): 5.125, 5.188, 5.25, 5.312, 5.375, 5.438, 5.5, 5.562, 5.625,
|
||||
(91): 5.688, 5.75, 5.812, 5.875, 5.938, 6, 6.062, 6.125, 6.188,
|
||||
(100): 6.25, 6.312, 6.375, 6.438, 6.5, 6.562, 6.625, 6.688, 6.75,
|
||||
(109): 6.812, 6.875, 6.938, 7, 7.062, 7.125, 7.188, 7.25, 7.312,
|
||||
(118): 7.375, 7.438, 7.5, 7.562, 7.625, 7.688, 7.75, 7.812, 7.875,
|
||||
(127): 7.938, 127, 0.07031, 0.1328, 0.1953, 0.2578, 0.3203, 0.3828,
|
||||
(135): 0.4453, 0.5078, 0.5703, 0.6328, 0.6953, 0.7578, 0.8203,
|
||||
(142): 0.8828, 0.9453, 1.008, 1.07, 1.133, 1.195, 1.258, 1.32,
|
||||
(150): 1.383, 1.445, 1.508, 1.57, 1.633, 1.695, 1.758, 1.82, 1.883,
|
||||
(159): 1.945, 2.008, 2.07, 2.133, 2.195, 2.258, 2.32, 2.383, 2.445,
|
||||
(168): 2.508, 2.57, 2.633, 2.695, 2.758, 2.82, 2.883, 2.945, 3.008,
|
||||
(177): 3.07, 3.133, 3.195, 3.258, 3.32, 3.383, 3.445, 3.508, 3.57,
|
||||
(186): 3.633, 3.695, 3.758, 3.82, 3.883, 3.945, 4.008, 4.07, 4.133,
|
||||
(195): 4.195, 4.258, 4.32, 4.383, 4.445, 4.508, 4.57, 4.633, 4.695,
|
||||
(204): 4.758, 4.82, 4.883, 4.945, 5.008, 5.07, 5.133, 5.195, 5.258,
|
||||
(213): 5.32, 5.383, 5.445, 5.508, 5.57, 5.633, 5.695, 5.758, 5.82,
|
||||
(222): 5.883, 5.945, 6.008, 6.07, 6.133, 6.195, 6.258, 6.32, 6.383,
|
||||
(231): 6.445, 6.508, 6.57, 6.633, 6.695, 6.758, 6.82, 6.883, 6.945,
|
||||
(240): 7.008, 7.07, 7.133, 7.195, 7.258, 7.32, 7.383, 7.445, 7.508,
|
||||
(249): 7.57, 7.633, 7.695, 7.758, 7.82, 7.883, 7.945, 126, 0.07812,
|
||||
(258): 0.1406, 0.2031, 0.2656, 0.3281, 0.3906, 0.4531, 0.5156,
|
||||
(265): 0.5781, 0.6406, 0.7031, 0.7656, 0.8281, 0.8906, 0.9531,
|
||||
(272): 1.016, 1.078, 1.141, 1.203, 1.266, 1.328, 1.391, 1.453,
|
||||
(280): 1.516, 1.578, 1.641, 1.703, 1.766, 1.828, 1.891, 1.953,
|
||||
(288): 2.016, 2.078, 2.141, 2.203, 2.266, 2.328, 2.391, 2.453,
|
||||
(296): 2.516, 2.578, 2.641, 2.703, 2.766, 2.828, 2.891, 2.953,
|
||||
(304): 3.016, 3.078, 3.141, 3.203, 3.266, 3.328, 3.391, 3.453,
|
||||
(312): 3.516, 3.578, 3.641, 3.703, 3.766, 3.828, 3.891, 3.953,
|
||||
(320): 4.016, 4.078, 4.141, 4.203, 4.266, 4.328, 4.391, 4.453,
|
||||
(328): 4.516, 4.578, 4.641, 4.703, 4.766, 4.828, 4.891, 4.953,
|
||||
(336): 5.016, 5.078, 5.141, 5.203, 5.266, 5.328, 5.391, 5.453,
|
||||
(344): 5.516, 5.578, 5.641, 5.703, 5.766, 5.828, 5.891, 5.953,
|
||||
(352): 6.016, 6.078, 6.141, 6.203, 6.266, 6.328, 6.391, 6.453,
|
||||
(360): 6.516, 6.578, 6.641, 6.703, 6.766, 6.828, 6.891, 6.953,
|
||||
(368): 7.016, 7.078, 7.141, 7.203, 7.266, 7.328, 7.391, 7.453,
|
||||
(376): 7.516, 7.578, 7.641, 7.703, 7.766, 7.828, 7.891, 7.953, 125,
|
||||
(385): 0.08594, 0.1484, 0.2109, 0.2734, 0.3359, 0.3984, 0.4609,
|
||||
(392): 0.5234, 0.5859, 0.6484, 0.7109, 0.7734, 0.8359, 0.8984,
|
||||
(399): 0.9609, 1.023, 1.086, 1.148, 1.211, 1.273, 1.336, 1.398,
|
||||
(407): 1.461, 1.523, 1.586, 1.648, 1.711, 1.773, 1.836, 1.898,
|
||||
(415): 1.961, 2.023, 2.086, 2.148, 2.211, 2.273, 2.336, 2.398,
|
||||
(423): 2.461, 2.523, 2.586, 2.648, 2.711, 2.773, 2.836, 2.898,
|
||||
(431): 2.961, 3.023, 3.086, 3.148, 3.211, 3.273, 3.336, 3.398,
|
||||
(439): 3.461, 3.523, 3.586, 3.648, 3.711, 3.773, 3.836, 3.898,
|
||||
(447): 3.961, 4.023, 4.086, 4.148, 4.211, 4.273, 4.336, 4.398,
|
||||
(455): 4.461, 4.523, 4.586, 4.648, 4.711, 4.773, 4.836, 4.898,
|
||||
(463): 4.961, 5.023, 5.086, 5.148, 5.211, 5.273, 5.336, 5.398,
|
||||
(471): 5.461, 5.523, 5.586, 5.648, 5.711, 5.773, 5.836, 5.898,
|
||||
(479): 5.961, 6.023, 6.086, 6.148, 6.211, 6.273, 6.336, 6.398,
|
||||
(487): 6.461, 6.523, 6.586, 6.648, 6.711, 6.773, 6.836, 6.898,
|
||||
(495): 6.961, 7.023, 7.086, 7.148, 7.211, 7.273, 7.336, 7.398,
|
||||
(503): 7.461, 7.523, 7.586, 7.648, 7.711, 7.773, 7.836, 7.898,
|
||||
(511): 7.961, 124, 0.09375, 0.1562, 0.2188, 0.2812, 0.3438, 0.4062,
|
||||
(519): 0.4688, 0.5312, 0.5938, 0.6562, 0.7188, 0.7812, 0.8438,
|
||||
(526): 0.9062, 0.9688, 1.031, 1.094, 1.156, 1.219, 1.281, 1.344,
|
||||
(534): 1.406, 1.469, 1.531, 1.594, 1.656, 1.719, 1.781, 1.844,
|
||||
(542): 1.906, 1.969, 2.031, 2.094, 2.156, 2.219, 2.281, 2.344,
|
||||
(550): 2.406, 2.469, 2.531, 2.594, 2.656, 2.719, 2.781, 2.844,
|
||||
(558): 2.906, 2.969, 3.031, 3.094, 3.156, 3.219, 3.281, 3.344,
|
||||
(566): 3.406, 3.469, 3.531, 3.594, 3.656, 3.719, 3.781, 3.844,
|
||||
(574): 3.906, 3.969, 4.031, 4.094, 4.156, 4.219, 4.281, 4.344,
|
||||
(582): 4.406, 4.469, 4.531, 4.594, 4.656, 4.719, 4.781, 4.844,
|
||||
(590): 4.906, 4.969, 5.031, 5.094, 5.156, 5.219, 5.281, 5.344,
|
||||
(598): 5.406, 5.469, 5.531, 5.594, 5.656, 5.719, 5.781, 5.844,
|
||||
(606): 5.906, 5.969, 6.031, 6.094, 6.156, 6.219, 6.281, 6.344,
|
||||
(614): 6.406, 6.469, 6.531, 6.594, 6.656, 6.719, 6.781, 6.844,
|
||||
(622): 6.906, 6.969, 7.031, 7.094, 7.156, 7.219, 7.281, 7.344,
|
||||
(630): 7.406, 7.469, 7.531, 7.594, 7.656, 7.719, 7.781, 7.844,
|
||||
(638): 7.906, 7.969, 123, 0.1016, 0.1641, 0.2266, 0.2891, 0.3516,
|
||||
(646): 0.4141, 0.4766, 0.5391, 0.6016, 0.6641, 0.7266, 0.7891,
|
||||
(653): 0.8516, 0.9141, 0.9766, 1.039, 1.102, 1.164, 1.227, 1.289,
|
||||
(661): 1.352, 1.414, 1.477, 1.539, 1.602, 1.664, 1.727, 1.789,
|
||||
(669): 1.852, 1.914, 1.977, 2.039, 2.102, 2.164, 2.227, 2.289,
|
||||
(677): 2.352, 2.414, 2.477, 2.539, 2.602, 2.664, 2.727, 2.789,
|
||||
(685): 2.852, 2.914, 2.977, 3.039, 3.102, 3.164, 3.227, 3.289,
|
||||
(693): 3.352, 3.414, 3.477, 3.539, 3.602, 3.664, 3.727, 3.789,
|
||||
(701): 3.852, 3.914, 3.977, 4.039, 4.102, 4.164, 4.227, 4.289,
|
||||
(709): 4.352, 4.414, 4.477, 4.539, 4.602, 4.664, 4.727, 4.789,
|
||||
(717): 4.852, 4.914, 4.977, 5.039, 5.102, 5.164, 5.227, 5.289,
|
||||
(725): 5.352, 5.414, 5.477, 5.539, 5.602, 5.664, 5.727, 5.789,
|
||||
(733): 5.852, 5.914, 5.977, 6.039, 6.102, 6.164, 6.227, 6.289,
|
||||
(741): 6.352, 6.414, 6.477, 6.539, 6.602, 6.664, 6.727, 6.789,
|
||||
(749): 6.852, 6.914, 6.977, 7.039, 7.102, 7.164, 7.227, 7.289,
|
||||
(757): 7.352, 7.414, 7.477, 7.539, 7.602, 7.664, 7.727, 7.789,
|
||||
(765): 7.852, 7.914, 7.977, 122, 0.1094, 0.1719, 0.2344, 0.2969,
|
||||
(773): 0.3594, 0.4219, 0.4844, 0.5469, 0.6094, 0.6719, 0.7344,
|
||||
(780): 0.7969, 0.8594, 0.9219, 0.9844, 1.047, 1.109, 1.172, 1.234,
|
||||
(788): 1.297, 1.359, 1.422, 1.484, 1.547, 1.609, 1.672, 1.734,
|
||||
(796): 1.797, 1.859, 1.922, 1.984, 2.047, 2.109, 2.172, 2.234,
|
||||
(804): 2.297, 2.359, 2.422, 2.484, 2.547, 2.609, 2.672, 2.734,
|
||||
(812): 2.797, 2.859, 2.922, 2.984, 3.047, 3.109, 3.172, 3.234,
|
||||
(820): 3.297, 3.359, 3.422, 3.484, 3.547, 3.609, 3.672, 3.734,
|
||||
(828): 3.797, 3.859, 3.922, 3.984, 4.047, 4.109, 4.172, 4.234,
|
||||
(836): 4.297, 4.359, 4.422, 4.484, 4.547, 4.609, 4.672, 4.734,
|
||||
(844): 4.797, 4.859, 4.922, 4.984, 5.047, 5.109, 5.172, 5.234,
|
||||
(852): 5.297, 5.359, 5.422, 5.484, 5.547, 5.609, 5.672, 5.734,
|
||||
(860): 5.797, 5.859, 5.922, 5.984, 6.047, 6.109, 6.172, 6.234,
|
||||
(868): 6.297, 6.359, 6.422, 6.484, 6.547, 6.609, 6.672, 6.734,
|
||||
(876): 6.797, 6.859, 6.922, 6.984, 7.047, 7.109, 7.172, 7.234,
|
||||
(884): 7.297, 7.359, 7.422, 7.484, 7.547, 7.609, 7.672, 7.734,
|
||||
(892): 7.797, 7.859, 7.922, 7.984, 121, 0.1172, 0.1797, 0.2422,
|
||||
(900): 0.3047, 0.3672, 0.4297, 0.4922, 0.5547, 0.6172, 0.6797,
|
||||
(907): 0.7422, 0.8047, 0.8672, 0.9297, 0.9922, 1.055, 1.117, 1.18,
|
||||
(915): 1.242, 1.305, 1.367, 1.43, 1.492, 1.555, 1.617, 1.68, 1.742,
|
||||
(924): 1.805, 1.867, 1.93, 1.992, 2.055, 2.117, 2.18, 2.242, 2.305,
|
||||
(933): 2.367, 2.43, 2.492, 2.555, 2.617, 2.68, 2.742, 2.805, 2.867,
|
||||
(942): 2.93, 2.992, 3.055, 3.117, 3.18, 3.242, 3.305, 3.367, 3.43,
|
||||
(951): 3.492, 3.555, 3.617, 3.68, 3.742, 3.805, 3.867, 3.93, 3.992,
|
||||
(960): 4.055, 4.117, 4.18, 4.242, 4.305, 4.367, 4.43, 4.492, 4.555,
|
||||
(969): 4.617, 4.68, 4.742, 4.805, 4.867, 4.93, 4.992, 5.055, 5.117,
|
||||
(978): 5.18, 5.242, 5.305, 5.367, 5.43, 5.492, 5.555, 5.617, 5.68,
|
||||
(987): 5.742, 5.805, 5.867, 5.93, 5.992, 6.055, 6.117, 6.18, 6.242,
|
||||
(996): 6.305, 6.367, 6.43, 6.492, 6.555, 6.617, 6.68, 6.742, 6.805,
|
||||
(1005): 6.867, 6.93, 6.992, 7.055, 7.117, 7.18, 7.242, 7.305, 7.367,
|
||||
(1014): 7.43, 7.492, 7.555, 7.617, 7.68, 7.742, 7.805, 7.867, 7.93,
|
||||
(1023): 7.992
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -361,38 +293,34 @@ GROUP "/" {
|
||||
(0,0): 32, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3,
|
||||
(0,13): 3.25, 3.5, 3.75, 4, 4.25, 4.5, 4.75, 5, 5.25, 5.5, 5.75, 6,
|
||||
(0,25): 6.25, 6.5, 6.75, 7, 7.25, 7.5, 7.75,
|
||||
(1,0): 31, 0.28125, 0.53125, 0.78125, 1.03125, 1.28125, 1.53125,
|
||||
(1,7): 1.78125, 2.03125, 2.28125, 2.53125, 2.78125, 3.03125, 3.28125,
|
||||
(1,14): 3.53125, 3.78125, 4.03125, 4.28125, 4.53125, 4.78125, 5.03125,
|
||||
(1,21): 5.28125, 5.53125, 5.78125, 6.03125, 6.28125, 6.53125, 6.78125,
|
||||
(1,28): 7.03125, 7.28125, 7.53125, 7.78125,
|
||||
(2,0): 30, 0.3125, 0.5625, 0.8125, 1.0625, 1.3125, 1.5625, 1.8125,
|
||||
(2,8): 2.0625, 2.3125, 2.5625, 2.8125, 3.0625, 3.3125, 3.5625, 3.8125,
|
||||
(2,16): 4.0625, 4.3125, 4.5625, 4.8125, 5.0625, 5.3125, 5.5625, 5.8125,
|
||||
(2,24): 6.0625, 6.3125, 6.5625, 6.8125, 7.0625, 7.3125, 7.5625, 7.8125,
|
||||
(3,0): 29, 0.34375, 0.59375, 0.84375, 1.09375, 1.34375, 1.59375,
|
||||
(3,7): 1.84375, 2.09375, 2.34375, 2.59375, 2.84375, 3.09375, 3.34375,
|
||||
(3,14): 3.59375, 3.84375, 4.09375, 4.34375, 4.59375, 4.84375, 5.09375,
|
||||
(3,21): 5.34375, 5.59375, 5.84375, 6.09375, 6.34375, 6.59375, 6.84375,
|
||||
(3,28): 7.09375, 7.34375, 7.59375, 7.84375,
|
||||
(1,0): 31, 0.2812, 0.5312, 0.7812, 1.031, 1.281, 1.531, 1.781, 2.031,
|
||||
(1,9): 2.281, 2.531, 2.781, 3.031, 3.281, 3.531, 3.781, 4.031, 4.281,
|
||||
(1,18): 4.531, 4.781, 5.031, 5.281, 5.531, 5.781, 6.031, 6.281, 6.531,
|
||||
(1,27): 6.781, 7.031, 7.281, 7.531, 7.781,
|
||||
(2,0): 30, 0.3125, 0.5625, 0.8125, 1.062, 1.312, 1.562, 1.812, 2.062,
|
||||
(2,9): 2.312, 2.562, 2.812, 3.062, 3.312, 3.562, 3.812, 4.062, 4.312,
|
||||
(2,18): 4.562, 4.812, 5.062, 5.312, 5.562, 5.812, 6.062, 6.312, 6.562,
|
||||
(2,27): 6.812, 7.062, 7.312, 7.562, 7.812,
|
||||
(3,0): 29, 0.3438, 0.5938, 0.8438, 1.094, 1.344, 1.594, 1.844, 2.094,
|
||||
(3,9): 2.344, 2.594, 2.844, 3.094, 3.344, 3.594, 3.844, 4.094, 4.344,
|
||||
(3,18): 4.594, 4.844, 5.094, 5.344, 5.594, 5.844, 6.094, 6.344, 6.594,
|
||||
(3,27): 6.844, 7.094, 7.344, 7.594, 7.844,
|
||||
(4,0): 28, 0.375, 0.625, 0.875, 1.125, 1.375, 1.625, 1.875, 2.125,
|
||||
(4,9): 2.375, 2.625, 2.875, 3.125, 3.375, 3.625, 3.875, 4.125, 4.375,
|
||||
(4,18): 4.625, 4.875, 5.125, 5.375, 5.625, 5.875, 6.125, 6.375, 6.625,
|
||||
(4,27): 6.875, 7.125, 7.375, 7.625, 7.875,
|
||||
(5,0): 27, 0.40625, 0.65625, 0.90625, 1.15625, 1.40625, 1.65625,
|
||||
(5,7): 1.90625, 2.15625, 2.40625, 2.65625, 2.90625, 3.15625, 3.40625,
|
||||
(5,14): 3.65625, 3.90625, 4.15625, 4.40625, 4.65625, 4.90625, 5.15625,
|
||||
(5,21): 5.40625, 5.65625, 5.90625, 6.15625, 6.40625, 6.65625, 6.90625,
|
||||
(5,28): 7.15625, 7.40625, 7.65625, 7.90625,
|
||||
(6,0): 26, 0.4375, 0.6875, 0.9375, 1.1875, 1.4375, 1.6875, 1.9375,
|
||||
(6,8): 2.1875, 2.4375, 2.6875, 2.9375, 3.1875, 3.4375, 3.6875, 3.9375,
|
||||
(6,16): 4.1875, 4.4375, 4.6875, 4.9375, 5.1875, 5.4375, 5.6875, 5.9375,
|
||||
(6,24): 6.1875, 6.4375, 6.6875, 6.9375, 7.1875, 7.4375, 7.6875, 7.9375,
|
||||
(7,0): 25, 0.46875, 0.71875, 0.96875, 1.21875, 1.46875, 1.71875,
|
||||
(7,7): 1.96875, 2.21875, 2.46875, 2.71875, 2.96875, 3.21875, 3.46875,
|
||||
(7,14): 3.71875, 3.96875, 4.21875, 4.46875, 4.71875, 4.96875, 5.21875,
|
||||
(7,21): 5.46875, 5.71875, 5.96875, 6.21875, 6.46875, 6.71875, 6.96875,
|
||||
(7,28): 7.21875, 7.46875, 7.71875, 7.96875
|
||||
(5,0): 27, 0.4062, 0.6562, 0.9062, 1.156, 1.406, 1.656, 1.906, 2.156,
|
||||
(5,9): 2.406, 2.656, 2.906, 3.156, 3.406, 3.656, 3.906, 4.156, 4.406,
|
||||
(5,18): 4.656, 4.906, 5.156, 5.406, 5.656, 5.906, 6.156, 6.406, 6.656,
|
||||
(5,27): 6.906, 7.156, 7.406, 7.656, 7.906,
|
||||
(6,0): 26, 0.4375, 0.6875, 0.9375, 1.188, 1.438, 1.688, 1.938, 2.188,
|
||||
(6,9): 2.438, 2.688, 2.938, 3.188, 3.438, 3.688, 3.938, 4.188, 4.438,
|
||||
(6,18): 4.688, 4.938, 5.188, 5.438, 5.688, 5.938, 6.188, 6.438, 6.688,
|
||||
(6,27): 6.938, 7.188, 7.438, 7.688, 7.938,
|
||||
(7,0): 25, 0.4688, 0.7188, 0.9688, 1.219, 1.469, 1.719, 1.969, 2.219,
|
||||
(7,9): 2.469, 2.719, 2.969, 3.219, 3.469, 3.719, 3.969, 4.219, 4.469,
|
||||
(7,18): 4.719, 4.969, 5.219, 5.469, 5.719, 5.969, 6.219, 6.469, 6.719,
|
||||
(7,27): 6.969, 7.219, 7.469, 7.719, 7.969
|
||||
}
|
||||
ATTRIBUTE "DS32BITS" {
|
||||
DATATYPE H5T_IEEE_F32LE
|
||||
@ -400,40 +328,34 @@ GROUP "/" {
|
||||
DATA {
|
||||
(0): 32, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3,
|
||||
(13): 3.25, 3.5, 3.75, 4, 4.25, 4.5, 4.75, 5, 5.25, 5.5, 5.75, 6,
|
||||
(25): 6.25, 6.5, 6.75, 7, 7.25, 7.5, 7.75, 31, 0.28125, 0.53125,
|
||||
(35): 0.78125, 1.03125, 1.28125, 1.53125, 1.78125, 2.03125, 2.28125,
|
||||
(42): 2.53125, 2.78125, 3.03125, 3.28125, 3.53125, 3.78125, 4.03125,
|
||||
(49): 4.28125, 4.53125, 4.78125, 5.03125, 5.28125, 5.53125, 5.78125,
|
||||
(56): 6.03125, 6.28125, 6.53125, 6.78125, 7.03125, 7.28125, 7.53125,
|
||||
(63): 7.78125, 30, 0.3125, 0.5625, 0.8125, 1.0625, 1.3125, 1.5625,
|
||||
(71): 1.8125, 2.0625, 2.3125, 2.5625, 2.8125, 3.0625, 3.3125,
|
||||
(78): 3.5625, 3.8125, 4.0625, 4.3125, 4.5625, 4.8125, 5.0625,
|
||||
(85): 5.3125, 5.5625, 5.8125, 6.0625, 6.3125, 6.5625, 6.8125,
|
||||
(92): 7.0625, 7.3125, 7.5625, 7.8125, 29, 0.34375, 0.59375, 0.84375,
|
||||
(100): 1.09375, 1.34375, 1.59375, 1.84375, 2.09375, 2.34375,
|
||||
(106): 2.59375, 2.84375, 3.09375, 3.34375, 3.59375, 3.84375,
|
||||
(112): 4.09375, 4.34375, 4.59375, 4.84375, 5.09375, 5.34375,
|
||||
(118): 5.59375, 5.84375, 6.09375, 6.34375, 6.59375, 6.84375,
|
||||
(124): 7.09375, 7.34375, 7.59375, 7.84375, 28, 0.375, 0.625, 0.875,
|
||||
(132): 1.125, 1.375, 1.625, 1.875, 2.125, 2.375, 2.625, 2.875,
|
||||
(140): 3.125, 3.375, 3.625, 3.875, 4.125, 4.375, 4.625, 4.875,
|
||||
(148): 5.125, 5.375, 5.625, 5.875, 6.125, 6.375, 6.625, 6.875,
|
||||
(156): 7.125, 7.375, 7.625, 7.875, 27, 0.40625, 0.65625, 0.90625,
|
||||
(164): 1.15625, 1.40625, 1.65625, 1.90625, 2.15625, 2.40625,
|
||||
(170): 2.65625, 2.90625, 3.15625, 3.40625, 3.65625, 3.90625,
|
||||
(176): 4.15625, 4.40625, 4.65625, 4.90625, 5.15625, 5.40625,
|
||||
(182): 5.65625, 5.90625, 6.15625, 6.40625, 6.65625, 6.90625,
|
||||
(188): 7.15625, 7.40625, 7.65625, 7.90625, 26, 0.4375, 0.6875,
|
||||
(195): 0.9375, 1.1875, 1.4375, 1.6875, 1.9375, 2.1875, 2.4375,
|
||||
(202): 2.6875, 2.9375, 3.1875, 3.4375, 3.6875, 3.9375, 4.1875,
|
||||
(209): 4.4375, 4.6875, 4.9375, 5.1875, 5.4375, 5.6875, 5.9375,
|
||||
(216): 6.1875, 6.4375, 6.6875, 6.9375, 7.1875, 7.4375, 7.6875,
|
||||
(223): 7.9375, 25, 0.46875, 0.71875, 0.96875, 1.21875, 1.46875,
|
||||
(230): 1.71875, 1.96875, 2.21875, 2.46875, 2.71875, 2.96875,
|
||||
(236): 3.21875, 3.46875, 3.71875, 3.96875, 4.21875, 4.46875,
|
||||
(242): 4.71875, 4.96875, 5.21875, 5.46875, 5.71875, 5.96875,
|
||||
(248): 6.21875, 6.46875, 6.71875, 6.96875, 7.21875, 7.46875,
|
||||
(254): 7.71875, 7.96875
|
||||
(25): 6.25, 6.5, 6.75, 7, 7.25, 7.5, 7.75, 31, 0.2812, 0.5312,
|
||||
(35): 0.7812, 1.031, 1.281, 1.531, 1.781, 2.031, 2.281, 2.531,
|
||||
(43): 2.781, 3.031, 3.281, 3.531, 3.781, 4.031, 4.281, 4.531, 4.781,
|
||||
(52): 5.031, 5.281, 5.531, 5.781, 6.031, 6.281, 6.531, 6.781, 7.031,
|
||||
(61): 7.281, 7.531, 7.781, 30, 0.3125, 0.5625, 0.8125, 1.062, 1.312,
|
||||
(70): 1.562, 1.812, 2.062, 2.312, 2.562, 2.812, 3.062, 3.312, 3.562,
|
||||
(79): 3.812, 4.062, 4.312, 4.562, 4.812, 5.062, 5.312, 5.562, 5.812,
|
||||
(88): 6.062, 6.312, 6.562, 6.812, 7.062, 7.312, 7.562, 7.812, 29,
|
||||
(97): 0.3438, 0.5938, 0.8438, 1.094, 1.344, 1.594, 1.844, 2.094,
|
||||
(105): 2.344, 2.594, 2.844, 3.094, 3.344, 3.594, 3.844, 4.094,
|
||||
(113): 4.344, 4.594, 4.844, 5.094, 5.344, 5.594, 5.844, 6.094,
|
||||
(121): 6.344, 6.594, 6.844, 7.094, 7.344, 7.594, 7.844, 28, 0.375,
|
||||
(130): 0.625, 0.875, 1.125, 1.375, 1.625, 1.875, 2.125, 2.375,
|
||||
(138): 2.625, 2.875, 3.125, 3.375, 3.625, 3.875, 4.125, 4.375,
|
||||
(146): 4.625, 4.875, 5.125, 5.375, 5.625, 5.875, 6.125, 6.375,
|
||||
(154): 6.625, 6.875, 7.125, 7.375, 7.625, 7.875, 27, 0.4062, 0.6562,
|
||||
(163): 0.9062, 1.156, 1.406, 1.656, 1.906, 2.156, 2.406, 2.656,
|
||||
(171): 2.906, 3.156, 3.406, 3.656, 3.906, 4.156, 4.406, 4.656,
|
||||
(179): 4.906, 5.156, 5.406, 5.656, 5.906, 6.156, 6.406, 6.656,
|
||||
(187): 6.906, 7.156, 7.406, 7.656, 7.906, 26, 0.4375, 0.6875,
|
||||
(195): 0.9375, 1.188, 1.438, 1.688, 1.938, 2.188, 2.438, 2.688,
|
||||
(203): 2.938, 3.188, 3.438, 3.688, 3.938, 4.188, 4.438, 4.688,
|
||||
(211): 4.938, 5.188, 5.438, 5.688, 5.938, 6.188, 6.438, 6.688,
|
||||
(219): 6.938, 7.188, 7.438, 7.688, 7.938, 25, 0.4688, 0.7188,
|
||||
(227): 0.9688, 1.219, 1.469, 1.719, 1.969, 2.219, 2.469, 2.719,
|
||||
(235): 2.969, 3.219, 3.469, 3.719, 3.969, 4.219, 4.469, 4.719,
|
||||
(243): 4.969, 5.219, 5.469, 5.719, 5.969, 6.219, 6.469, 6.719,
|
||||
(251): 6.969, 7.219, 7.469, 7.719, 7.969
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -463,74 +385,62 @@ GROUP "/" {
|
||||
(0,41): 5.125, 5.25, 5.375, 5.5, 5.625, 5.75, 5.875, 6, 6.125, 6.25,
|
||||
(0,51): 6.375, 6.5, 6.625, 6.75, 6.875, 7, 7.125, 7.25, 7.375, 7.5,
|
||||
(0,61): 7.625, 7.75, 7.875,
|
||||
(1,0): 63, 0.140625, 0.265625, 0.390625, 0.515625, 0.640625, 0.765625,
|
||||
(1,7): 0.890625, 1.01562, 1.14062, 1.26562, 1.39062, 1.51562, 1.64062,
|
||||
(1,14): 1.76562, 1.89062, 2.01562, 2.14062, 2.26562, 2.39062, 2.51562,
|
||||
(1,21): 2.64062, 2.76562, 2.89062, 3.01562, 3.14062, 3.26562, 3.39062,
|
||||
(1,28): 3.51562, 3.64062, 3.76562, 3.89062, 4.01562, 4.14062, 4.26562,
|
||||
(1,35): 4.39062, 4.51562, 4.64062, 4.76562, 4.89062, 5.01562, 5.14062,
|
||||
(1,42): 5.26562, 5.39062, 5.51562, 5.64062, 5.76562, 5.89062, 6.01562,
|
||||
(1,49): 6.14062, 6.26562, 6.39062, 6.51562, 6.64062, 6.76562, 6.89062,
|
||||
(1,56): 7.01562, 7.14062, 7.26562, 7.39062, 7.51562, 7.64062, 7.76562,
|
||||
(1,63): 7.89062,
|
||||
(2,0): 62, 0.15625, 0.28125, 0.40625, 0.53125, 0.65625, 0.78125,
|
||||
(2,7): 0.90625, 1.03125, 1.15625, 1.28125, 1.40625, 1.53125, 1.65625,
|
||||
(2,14): 1.78125, 1.90625, 2.03125, 2.15625, 2.28125, 2.40625, 2.53125,
|
||||
(2,21): 2.65625, 2.78125, 2.90625, 3.03125, 3.15625, 3.28125, 3.40625,
|
||||
(2,28): 3.53125, 3.65625, 3.78125, 3.90625, 4.03125, 4.15625, 4.28125,
|
||||
(2,35): 4.40625, 4.53125, 4.65625, 4.78125, 4.90625, 5.03125, 5.15625,
|
||||
(2,42): 5.28125, 5.40625, 5.53125, 5.65625, 5.78125, 5.90625, 6.03125,
|
||||
(2,49): 6.15625, 6.28125, 6.40625, 6.53125, 6.65625, 6.78125, 6.90625,
|
||||
(2,56): 7.03125, 7.15625, 7.28125, 7.40625, 7.53125, 7.65625, 7.78125,
|
||||
(2,63): 7.90625,
|
||||
(3,0): 61, 0.171875, 0.296875, 0.421875, 0.546875, 0.671875, 0.796875,
|
||||
(3,7): 0.921875, 1.04688, 1.17188, 1.29688, 1.42188, 1.54688, 1.67188,
|
||||
(3,14): 1.79688, 1.92188, 2.04688, 2.17188, 2.29688, 2.42188, 2.54688,
|
||||
(3,21): 2.67188, 2.79688, 2.92188, 3.04688, 3.17188, 3.29688, 3.42188,
|
||||
(3,28): 3.54688, 3.67188, 3.79688, 3.92188, 4.04688, 4.17188, 4.29688,
|
||||
(3,35): 4.42188, 4.54688, 4.67188, 4.79688, 4.92188, 5.04688, 5.17188,
|
||||
(3,42): 5.29688, 5.42188, 5.54688, 5.67188, 5.79688, 5.92188, 6.04688,
|
||||
(3,49): 6.17188, 6.29688, 6.42188, 6.54688, 6.67188, 6.79688, 6.92188,
|
||||
(3,56): 7.04688, 7.17188, 7.29688, 7.42188, 7.54688, 7.67188, 7.79688,
|
||||
(3,63): 7.92188,
|
||||
(1,0): 63, 0.1406, 0.2656, 0.3906, 0.5156, 0.6406, 0.7656, 0.8906,
|
||||
(1,8): 1.016, 1.141, 1.266, 1.391, 1.516, 1.641, 1.766, 1.891, 2.016,
|
||||
(1,17): 2.141, 2.266, 2.391, 2.516, 2.641, 2.766, 2.891, 3.016, 3.141,
|
||||
(1,26): 3.266, 3.391, 3.516, 3.641, 3.766, 3.891, 4.016, 4.141, 4.266,
|
||||
(1,35): 4.391, 4.516, 4.641, 4.766, 4.891, 5.016, 5.141, 5.266, 5.391,
|
||||
(1,44): 5.516, 5.641, 5.766, 5.891, 6.016, 6.141, 6.266, 6.391, 6.516,
|
||||
(1,53): 6.641, 6.766, 6.891, 7.016, 7.141, 7.266, 7.391, 7.516, 7.641,
|
||||
(1,62): 7.766, 7.891,
|
||||
(2,0): 62, 0.1562, 0.2812, 0.4062, 0.5312, 0.6562, 0.7812, 0.9062,
|
||||
(2,8): 1.031, 1.156, 1.281, 1.406, 1.531, 1.656, 1.781, 1.906, 2.031,
|
||||
(2,17): 2.156, 2.281, 2.406, 2.531, 2.656, 2.781, 2.906, 3.031, 3.156,
|
||||
(2,26): 3.281, 3.406, 3.531, 3.656, 3.781, 3.906, 4.031, 4.156, 4.281,
|
||||
(2,35): 4.406, 4.531, 4.656, 4.781, 4.906, 5.031, 5.156, 5.281, 5.406,
|
||||
(2,44): 5.531, 5.656, 5.781, 5.906, 6.031, 6.156, 6.281, 6.406, 6.531,
|
||||
(2,53): 6.656, 6.781, 6.906, 7.031, 7.156, 7.281, 7.406, 7.531, 7.656,
|
||||
(2,62): 7.781, 7.906,
|
||||
(3,0): 61, 0.1719, 0.2969, 0.4219, 0.5469, 0.6719, 0.7969, 0.9219,
|
||||
(3,8): 1.047, 1.172, 1.297, 1.422, 1.547, 1.672, 1.797, 1.922, 2.047,
|
||||
(3,17): 2.172, 2.297, 2.422, 2.547, 2.672, 2.797, 2.922, 3.047, 3.172,
|
||||
(3,26): 3.297, 3.422, 3.547, 3.672, 3.797, 3.922, 4.047, 4.172, 4.297,
|
||||
(3,35): 4.422, 4.547, 4.672, 4.797, 4.922, 5.047, 5.172, 5.297, 5.422,
|
||||
(3,44): 5.547, 5.672, 5.797, 5.922, 6.047, 6.172, 6.297, 6.422, 6.547,
|
||||
(3,53): 6.672, 6.797, 6.922, 7.047, 7.172, 7.297, 7.422, 7.547, 7.672,
|
||||
(3,62): 7.797, 7.922,
|
||||
(4,0): 60, 0.1875, 0.3125, 0.4375, 0.5625, 0.6875, 0.8125, 0.9375,
|
||||
(4,8): 1.0625, 1.1875, 1.3125, 1.4375, 1.5625, 1.6875, 1.8125, 1.9375,
|
||||
(4,16): 2.0625, 2.1875, 2.3125, 2.4375, 2.5625, 2.6875, 2.8125, 2.9375,
|
||||
(4,24): 3.0625, 3.1875, 3.3125, 3.4375, 3.5625, 3.6875, 3.8125, 3.9375,
|
||||
(4,32): 4.0625, 4.1875, 4.3125, 4.4375, 4.5625, 4.6875, 4.8125, 4.9375,
|
||||
(4,40): 5.0625, 5.1875, 5.3125, 5.4375, 5.5625, 5.6875, 5.8125, 5.9375,
|
||||
(4,48): 6.0625, 6.1875, 6.3125, 6.4375, 6.5625, 6.6875, 6.8125, 6.9375,
|
||||
(4,56): 7.0625, 7.1875, 7.3125, 7.4375, 7.5625, 7.6875, 7.8125, 7.9375,
|
||||
(5,0): 59, 0.203125, 0.328125, 0.453125, 0.578125, 0.703125, 0.828125,
|
||||
(5,7): 0.953125, 1.07812, 1.20312, 1.32812, 1.45312, 1.57812, 1.70312,
|
||||
(5,14): 1.82812, 1.95312, 2.07812, 2.20312, 2.32812, 2.45312, 2.57812,
|
||||
(5,21): 2.70312, 2.82812, 2.95312, 3.07812, 3.20312, 3.32812, 3.45312,
|
||||
(5,28): 3.57812, 3.70312, 3.82812, 3.95312, 4.07812, 4.20312, 4.32812,
|
||||
(5,35): 4.45312, 4.57812, 4.70312, 4.82812, 4.95312, 5.07812, 5.20312,
|
||||
(5,42): 5.32812, 5.45312, 5.57812, 5.70312, 5.82812, 5.95312, 6.07812,
|
||||
(5,49): 6.20312, 6.32812, 6.45312, 6.57812, 6.70312, 6.82812, 6.95312,
|
||||
(5,56): 7.07812, 7.20312, 7.32812, 7.45312, 7.57812, 7.70312, 7.82812,
|
||||
(5,63): 7.95312,
|
||||
(6,0): 58, 0.21875, 0.34375, 0.46875, 0.59375, 0.71875, 0.84375,
|
||||
(6,7): 0.96875, 1.09375, 1.21875, 1.34375, 1.46875, 1.59375, 1.71875,
|
||||
(6,14): 1.84375, 1.96875, 2.09375, 2.21875, 2.34375, 2.46875, 2.59375,
|
||||
(6,21): 2.71875, 2.84375, 2.96875, 3.09375, 3.21875, 3.34375, 3.46875,
|
||||
(6,28): 3.59375, 3.71875, 3.84375, 3.96875, 4.09375, 4.21875, 4.34375,
|
||||
(6,35): 4.46875, 4.59375, 4.71875, 4.84375, 4.96875, 5.09375, 5.21875,
|
||||
(6,42): 5.34375, 5.46875, 5.59375, 5.71875, 5.84375, 5.96875, 6.09375,
|
||||
(6,49): 6.21875, 6.34375, 6.46875, 6.59375, 6.71875, 6.84375, 6.96875,
|
||||
(6,56): 7.09375, 7.21875, 7.34375, 7.46875, 7.59375, 7.71875, 7.84375,
|
||||
(6,63): 7.96875,
|
||||
(7,0): 57, 0.234375, 0.359375, 0.484375, 0.609375, 0.734375, 0.859375,
|
||||
(7,7): 0.984375, 1.10938, 1.23438, 1.35938, 1.48438, 1.60938, 1.73438,
|
||||
(7,14): 1.85938, 1.98438, 2.10938, 2.23438, 2.35938, 2.48438, 2.60938,
|
||||
(7,21): 2.73438, 2.85938, 2.98438, 3.10938, 3.23438, 3.35938, 3.48438,
|
||||
(7,28): 3.60938, 3.73438, 3.85938, 3.98438, 4.10938, 4.23438, 4.35938,
|
||||
(7,35): 4.48438, 4.60938, 4.73438, 4.85938, 4.98438, 5.10938, 5.23438,
|
||||
(7,42): 5.35938, 5.48438, 5.60938, 5.73438, 5.85938, 5.98438, 6.10938,
|
||||
(7,49): 6.23438, 6.35938, 6.48438, 6.60938, 6.73438, 6.85938, 6.98438,
|
||||
(7,56): 7.10938, 7.23438, 7.35938, 7.48438, 7.60938, 7.73438, 7.85938,
|
||||
(7,63): 7.98438
|
||||
(4,8): 1.062, 1.188, 1.312, 1.438, 1.562, 1.688, 1.812, 1.938, 2.062,
|
||||
(4,17): 2.188, 2.312, 2.438, 2.562, 2.688, 2.812, 2.938, 3.062, 3.188,
|
||||
(4,26): 3.312, 3.438, 3.562, 3.688, 3.812, 3.938, 4.062, 4.188, 4.312,
|
||||
(4,35): 4.438, 4.562, 4.688, 4.812, 4.938, 5.062, 5.188, 5.312, 5.438,
|
||||
(4,44): 5.562, 5.688, 5.812, 5.938, 6.062, 6.188, 6.312, 6.438, 6.562,
|
||||
(4,53): 6.688, 6.812, 6.938, 7.062, 7.188, 7.312, 7.438, 7.562, 7.688,
|
||||
(4,62): 7.812, 7.938,
|
||||
(5,0): 59, 0.2031, 0.3281, 0.4531, 0.5781, 0.7031, 0.8281, 0.9531,
|
||||
(5,8): 1.078, 1.203, 1.328, 1.453, 1.578, 1.703, 1.828, 1.953, 2.078,
|
||||
(5,17): 2.203, 2.328, 2.453, 2.578, 2.703, 2.828, 2.953, 3.078, 3.203,
|
||||
(5,26): 3.328, 3.453, 3.578, 3.703, 3.828, 3.953, 4.078, 4.203, 4.328,
|
||||
(5,35): 4.453, 4.578, 4.703, 4.828, 4.953, 5.078, 5.203, 5.328, 5.453,
|
||||
(5,44): 5.578, 5.703, 5.828, 5.953, 6.078, 6.203, 6.328, 6.453, 6.578,
|
||||
(5,53): 6.703, 6.828, 6.953, 7.078, 7.203, 7.328, 7.453, 7.578, 7.703,
|
||||
(5,62): 7.828, 7.953,
|
||||
(6,0): 58, 0.2188, 0.3438, 0.4688, 0.5938, 0.7188, 0.8438, 0.9688,
|
||||
(6,8): 1.094, 1.219, 1.344, 1.469, 1.594, 1.719, 1.844, 1.969, 2.094,
|
||||
(6,17): 2.219, 2.344, 2.469, 2.594, 2.719, 2.844, 2.969, 3.094, 3.219,
|
||||
(6,26): 3.344, 3.469, 3.594, 3.719, 3.844, 3.969, 4.094, 4.219, 4.344,
|
||||
(6,35): 4.469, 4.594, 4.719, 4.844, 4.969, 5.094, 5.219, 5.344, 5.469,
|
||||
(6,44): 5.594, 5.719, 5.844, 5.969, 6.094, 6.219, 6.344, 6.469, 6.594,
|
||||
(6,53): 6.719, 6.844, 6.969, 7.094, 7.219, 7.344, 7.469, 7.594, 7.719,
|
||||
(6,62): 7.844, 7.969,
|
||||
(7,0): 57, 0.2344, 0.3594, 0.4844, 0.6094, 0.7344, 0.8594, 0.9844,
|
||||
(7,8): 1.109, 1.234, 1.359, 1.484, 1.609, 1.734, 1.859, 1.984, 2.109,
|
||||
(7,17): 2.234, 2.359, 2.484, 2.609, 2.734, 2.859, 2.984, 3.109, 3.234,
|
||||
(7,26): 3.359, 3.484, 3.609, 3.734, 3.859, 3.984, 4.109, 4.234, 4.359,
|
||||
(7,35): 4.484, 4.609, 4.734, 4.859, 4.984, 5.109, 5.234, 5.359, 5.484,
|
||||
(7,44): 5.609, 5.734, 5.859, 5.984, 6.109, 6.234, 6.359, 6.484, 6.609,
|
||||
(7,53): 6.734, 6.859, 6.984, 7.109, 7.234, 7.359, 7.484, 7.609, 7.734,
|
||||
(7,62): 7.859, 7.984
|
||||
}
|
||||
ATTRIBUTE "DS64BITS" {
|
||||
DATATYPE H5T_IEEE_F64LE
|
||||
@ -542,78 +452,62 @@ GROUP "/" {
|
||||
(30): 3.75, 3.875, 4, 4.125, 4.25, 4.375, 4.5, 4.625, 4.75, 4.875,
|
||||
(40): 5, 5.125, 5.25, 5.375, 5.5, 5.625, 5.75, 5.875, 6, 6.125,
|
||||
(50): 6.25, 6.375, 6.5, 6.625, 6.75, 6.875, 7, 7.125, 7.25, 7.375,
|
||||
(60): 7.5, 7.625, 7.75, 7.875, 63, 0.140625, 0.265625, 0.390625,
|
||||
(68): 0.515625, 0.640625, 0.765625, 0.890625, 1.01562, 1.14062,
|
||||
(74): 1.26562, 1.39062, 1.51562, 1.64062, 1.76562, 1.89062, 2.01562,
|
||||
(81): 2.14062, 2.26562, 2.39062, 2.51562, 2.64062, 2.76562, 2.89062,
|
||||
(88): 3.01562, 3.14062, 3.26562, 3.39062, 3.51562, 3.64062, 3.76562,
|
||||
(95): 3.89062, 4.01562, 4.14062, 4.26562, 4.39062, 4.51562, 4.64062,
|
||||
(102): 4.76562, 4.89062, 5.01562, 5.14062, 5.26562, 5.39062,
|
||||
(108): 5.51562, 5.64062, 5.76562, 5.89062, 6.01562, 6.14062,
|
||||
(114): 6.26562, 6.39062, 6.51562, 6.64062, 6.76562, 6.89062,
|
||||
(120): 7.01562, 7.14062, 7.26562, 7.39062, 7.51562, 7.64062,
|
||||
(126): 7.76562, 7.89062, 62, 0.15625, 0.28125, 0.40625, 0.53125,
|
||||
(133): 0.65625, 0.78125, 0.90625, 1.03125, 1.15625, 1.28125,
|
||||
(139): 1.40625, 1.53125, 1.65625, 1.78125, 1.90625, 2.03125,
|
||||
(145): 2.15625, 2.28125, 2.40625, 2.53125, 2.65625, 2.78125,
|
||||
(151): 2.90625, 3.03125, 3.15625, 3.28125, 3.40625, 3.53125,
|
||||
(157): 3.65625, 3.78125, 3.90625, 4.03125, 4.15625, 4.28125,
|
||||
(163): 4.40625, 4.53125, 4.65625, 4.78125, 4.90625, 5.03125,
|
||||
(169): 5.15625, 5.28125, 5.40625, 5.53125, 5.65625, 5.78125,
|
||||
(175): 5.90625, 6.03125, 6.15625, 6.28125, 6.40625, 6.53125,
|
||||
(181): 6.65625, 6.78125, 6.90625, 7.03125, 7.15625, 7.28125,
|
||||
(187): 7.40625, 7.53125, 7.65625, 7.78125, 7.90625, 61, 0.171875,
|
||||
(194): 0.296875, 0.421875, 0.546875, 0.671875, 0.796875, 0.921875,
|
||||
(200): 1.04688, 1.17188, 1.29688, 1.42188, 1.54688, 1.67188,
|
||||
(206): 1.79688, 1.92188, 2.04688, 2.17188, 2.29688, 2.42188,
|
||||
(212): 2.54688, 2.67188, 2.79688, 2.92188, 3.04688, 3.17188,
|
||||
(218): 3.29688, 3.42188, 3.54688, 3.67188, 3.79688, 3.92188,
|
||||
(224): 4.04688, 4.17188, 4.29688, 4.42188, 4.54688, 4.67188,
|
||||
(230): 4.79688, 4.92188, 5.04688, 5.17188, 5.29688, 5.42188,
|
||||
(236): 5.54688, 5.67188, 5.79688, 5.92188, 6.04688, 6.17188,
|
||||
(242): 6.29688, 6.42188, 6.54688, 6.67188, 6.79688, 6.92188,
|
||||
(248): 7.04688, 7.17188, 7.29688, 7.42188, 7.54688, 7.67188,
|
||||
(254): 7.79688, 7.92188, 60, 0.1875, 0.3125, 0.4375, 0.5625, 0.6875,
|
||||
(262): 0.8125, 0.9375, 1.0625, 1.1875, 1.3125, 1.4375, 1.5625,
|
||||
(269): 1.6875, 1.8125, 1.9375, 2.0625, 2.1875, 2.3125, 2.4375,
|
||||
(276): 2.5625, 2.6875, 2.8125, 2.9375, 3.0625, 3.1875, 3.3125,
|
||||
(283): 3.4375, 3.5625, 3.6875, 3.8125, 3.9375, 4.0625, 4.1875,
|
||||
(290): 4.3125, 4.4375, 4.5625, 4.6875, 4.8125, 4.9375, 5.0625,
|
||||
(297): 5.1875, 5.3125, 5.4375, 5.5625, 5.6875, 5.8125, 5.9375,
|
||||
(304): 6.0625, 6.1875, 6.3125, 6.4375, 6.5625, 6.6875, 6.8125,
|
||||
(311): 6.9375, 7.0625, 7.1875, 7.3125, 7.4375, 7.5625, 7.6875,
|
||||
(318): 7.8125, 7.9375, 59, 0.203125, 0.328125, 0.453125, 0.578125,
|
||||
(325): 0.703125, 0.828125, 0.953125, 1.07812, 1.20312, 1.32812,
|
||||
(331): 1.45312, 1.57812, 1.70312, 1.82812, 1.95312, 2.07812,
|
||||
(337): 2.20312, 2.32812, 2.45312, 2.57812, 2.70312, 2.82812,
|
||||
(343): 2.95312, 3.07812, 3.20312, 3.32812, 3.45312, 3.57812,
|
||||
(349): 3.70312, 3.82812, 3.95312, 4.07812, 4.20312, 4.32812,
|
||||
(355): 4.45312, 4.57812, 4.70312, 4.82812, 4.95312, 5.07812,
|
||||
(361): 5.20312, 5.32812, 5.45312, 5.57812, 5.70312, 5.82812,
|
||||
(367): 5.95312, 6.07812, 6.20312, 6.32812, 6.45312, 6.57812,
|
||||
(373): 6.70312, 6.82812, 6.95312, 7.07812, 7.20312, 7.32812,
|
||||
(379): 7.45312, 7.57812, 7.70312, 7.82812, 7.95312, 58, 0.21875,
|
||||
(386): 0.34375, 0.46875, 0.59375, 0.71875, 0.84375, 0.96875,
|
||||
(392): 1.09375, 1.21875, 1.34375, 1.46875, 1.59375, 1.71875,
|
||||
(398): 1.84375, 1.96875, 2.09375, 2.21875, 2.34375, 2.46875,
|
||||
(404): 2.59375, 2.71875, 2.84375, 2.96875, 3.09375, 3.21875,
|
||||
(410): 3.34375, 3.46875, 3.59375, 3.71875, 3.84375, 3.96875,
|
||||
(416): 4.09375, 4.21875, 4.34375, 4.46875, 4.59375, 4.71875,
|
||||
(422): 4.84375, 4.96875, 5.09375, 5.21875, 5.34375, 5.46875,
|
||||
(428): 5.59375, 5.71875, 5.84375, 5.96875, 6.09375, 6.21875,
|
||||
(434): 6.34375, 6.46875, 6.59375, 6.71875, 6.84375, 6.96875,
|
||||
(440): 7.09375, 7.21875, 7.34375, 7.46875, 7.59375, 7.71875,
|
||||
(446): 7.84375, 7.96875, 57, 0.234375, 0.359375, 0.484375, 0.609375,
|
||||
(453): 0.734375, 0.859375, 0.984375, 1.10938, 1.23438, 1.35938,
|
||||
(459): 1.48438, 1.60938, 1.73438, 1.85938, 1.98438, 2.10938,
|
||||
(465): 2.23438, 2.35938, 2.48438, 2.60938, 2.73438, 2.85938,
|
||||
(471): 2.98438, 3.10938, 3.23438, 3.35938, 3.48438, 3.60938,
|
||||
(477): 3.73438, 3.85938, 3.98438, 4.10938, 4.23438, 4.35938,
|
||||
(483): 4.48438, 4.60938, 4.73438, 4.85938, 4.98438, 5.10938,
|
||||
(489): 5.23438, 5.35938, 5.48438, 5.60938, 5.73438, 5.85938,
|
||||
(495): 5.98438, 6.10938, 6.23438, 6.35938, 6.48438, 6.60938,
|
||||
(501): 6.73438, 6.85938, 6.98438, 7.10938, 7.23438, 7.35938,
|
||||
(507): 7.48438, 7.60938, 7.73438, 7.85938, 7.98438
|
||||
(60): 7.5, 7.625, 7.75, 7.875, 63, 0.1406, 0.2656, 0.3906, 0.5156,
|
||||
(69): 0.6406, 0.7656, 0.8906, 1.016, 1.141, 1.266, 1.391, 1.516,
|
||||
(77): 1.641, 1.766, 1.891, 2.016, 2.141, 2.266, 2.391, 2.516, 2.641,
|
||||
(86): 2.766, 2.891, 3.016, 3.141, 3.266, 3.391, 3.516, 3.641, 3.766,
|
||||
(95): 3.891, 4.016, 4.141, 4.266, 4.391, 4.516, 4.641, 4.766, 4.891,
|
||||
(104): 5.016, 5.141, 5.266, 5.391, 5.516, 5.641, 5.766, 5.891,
|
||||
(112): 6.016, 6.141, 6.266, 6.391, 6.516, 6.641, 6.766, 6.891,
|
||||
(120): 7.016, 7.141, 7.266, 7.391, 7.516, 7.641, 7.766, 7.891, 62,
|
||||
(129): 0.1562, 0.2812, 0.4062, 0.5312, 0.6562, 0.7812, 0.9062,
|
||||
(136): 1.031, 1.156, 1.281, 1.406, 1.531, 1.656, 1.781, 1.906,
|
||||
(144): 2.031, 2.156, 2.281, 2.406, 2.531, 2.656, 2.781, 2.906,
|
||||
(152): 3.031, 3.156, 3.281, 3.406, 3.531, 3.656, 3.781, 3.906,
|
||||
(160): 4.031, 4.156, 4.281, 4.406, 4.531, 4.656, 4.781, 4.906,
|
||||
(168): 5.031, 5.156, 5.281, 5.406, 5.531, 5.656, 5.781, 5.906,
|
||||
(176): 6.031, 6.156, 6.281, 6.406, 6.531, 6.656, 6.781, 6.906,
|
||||
(184): 7.031, 7.156, 7.281, 7.406, 7.531, 7.656, 7.781, 7.906, 61,
|
||||
(193): 0.1719, 0.2969, 0.4219, 0.5469, 0.6719, 0.7969, 0.9219,
|
||||
(200): 1.047, 1.172, 1.297, 1.422, 1.547, 1.672, 1.797, 1.922,
|
||||
(208): 2.047, 2.172, 2.297, 2.422, 2.547, 2.672, 2.797, 2.922,
|
||||
(216): 3.047, 3.172, 3.297, 3.422, 3.547, 3.672, 3.797, 3.922,
|
||||
(224): 4.047, 4.172, 4.297, 4.422, 4.547, 4.672, 4.797, 4.922,
|
||||
(232): 5.047, 5.172, 5.297, 5.422, 5.547, 5.672, 5.797, 5.922,
|
||||
(240): 6.047, 6.172, 6.297, 6.422, 6.547, 6.672, 6.797, 6.922,
|
||||
(248): 7.047, 7.172, 7.297, 7.422, 7.547, 7.672, 7.797, 7.922, 60,
|
||||
(257): 0.1875, 0.3125, 0.4375, 0.5625, 0.6875, 0.8125, 0.9375,
|
||||
(264): 1.062, 1.188, 1.312, 1.438, 1.562, 1.688, 1.812, 1.938,
|
||||
(272): 2.062, 2.188, 2.312, 2.438, 2.562, 2.688, 2.812, 2.938,
|
||||
(280): 3.062, 3.188, 3.312, 3.438, 3.562, 3.688, 3.812, 3.938,
|
||||
(288): 4.062, 4.188, 4.312, 4.438, 4.562, 4.688, 4.812, 4.938,
|
||||
(296): 5.062, 5.188, 5.312, 5.438, 5.562, 5.688, 5.812, 5.938,
|
||||
(304): 6.062, 6.188, 6.312, 6.438, 6.562, 6.688, 6.812, 6.938,
|
||||
(312): 7.062, 7.188, 7.312, 7.438, 7.562, 7.688, 7.812, 7.938, 59,
|
||||
(321): 0.2031, 0.3281, 0.4531, 0.5781, 0.7031, 0.8281, 0.9531,
|
||||
(328): 1.078, 1.203, 1.328, 1.453, 1.578, 1.703, 1.828, 1.953,
|
||||
(336): 2.078, 2.203, 2.328, 2.453, 2.578, 2.703, 2.828, 2.953,
|
||||
(344): 3.078, 3.203, 3.328, 3.453, 3.578, 3.703, 3.828, 3.953,
|
||||
(352): 4.078, 4.203, 4.328, 4.453, 4.578, 4.703, 4.828, 4.953,
|
||||
(360): 5.078, 5.203, 5.328, 5.453, 5.578, 5.703, 5.828, 5.953,
|
||||
(368): 6.078, 6.203, 6.328, 6.453, 6.578, 6.703, 6.828, 6.953,
|
||||
(376): 7.078, 7.203, 7.328, 7.453, 7.578, 7.703, 7.828, 7.953, 58,
|
||||
(385): 0.2188, 0.3438, 0.4688, 0.5938, 0.7188, 0.8438, 0.9688,
|
||||
(392): 1.094, 1.219, 1.344, 1.469, 1.594, 1.719, 1.844, 1.969,
|
||||
(400): 2.094, 2.219, 2.344, 2.469, 2.594, 2.719, 2.844, 2.969,
|
||||
(408): 3.094, 3.219, 3.344, 3.469, 3.594, 3.719, 3.844, 3.969,
|
||||
(416): 4.094, 4.219, 4.344, 4.469, 4.594, 4.719, 4.844, 4.969,
|
||||
(424): 5.094, 5.219, 5.344, 5.469, 5.594, 5.719, 5.844, 5.969,
|
||||
(432): 6.094, 6.219, 6.344, 6.469, 6.594, 6.719, 6.844, 6.969,
|
||||
(440): 7.094, 7.219, 7.344, 7.469, 7.594, 7.719, 7.844, 7.969, 57,
|
||||
(449): 0.2344, 0.3594, 0.4844, 0.6094, 0.7344, 0.8594, 0.9844,
|
||||
(456): 1.109, 1.234, 1.359, 1.484, 1.609, 1.734, 1.859, 1.984,
|
||||
(464): 2.109, 2.234, 2.359, 2.484, 2.609, 2.734, 2.859, 2.984,
|
||||
(472): 3.109, 3.234, 3.359, 3.484, 3.609, 3.734, 3.859, 3.984,
|
||||
(480): 4.109, 4.234, 4.359, 4.484, 4.609, 4.734, 4.859, 4.984,
|
||||
(488): 5.109, 5.234, 5.359, 5.484, 5.609, 5.734, 5.859, 5.984,
|
||||
(496): 6.109, 6.234, 6.359, 6.484, 6.609, 6.734, 6.859, 6.984,
|
||||
(504): 7.109, 7.234, 7.359, 7.484, 7.609, 7.734, 7.859, 7.984
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,621 +0,0 @@
|
||||
HDF5 "tfloatsattrs.h5" {
|
||||
GROUP "/" {
|
||||
DATASET "DS128BITS" {
|
||||
DATATYPE 128-bit little-endian floating-point 80-bit precision
|
||||
DATASPACE SIMPLE { ( 8, 128 ) / ( 8, 128 ) }
|
||||
STORAGE_LAYOUT {
|
||||
CONTIGUOUS
|
||||
SIZE 16384
|
||||
OFFSET 14416
|
||||
}
|
||||
FILTERS {
|
||||
NONE
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE H5D_FILL_VALUE_DEFAULT
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
}
|
||||
DATA {
|
||||
(0,0): 128, 0.0625, 0.125, 0.1875, 0.25, 0.3125, 0.375, 0.4375, 0.5,
|
||||
(0,9): 0.5625, 0.625, 0.6875, 0.75, 0.8125, 0.875, 0.9375, 1, 1.0625,
|
||||
(0,18): 1.125, 1.1875, 1.25, 1.3125, 1.375, 1.4375, 1.5, 1.5625, 1.625,
|
||||
(0,27): 1.6875, 1.75, 1.8125, 1.875, 1.9375, 2, 2.0625, 2.125, 2.1875,
|
||||
(0,36): 2.25, 2.3125, 2.375, 2.4375, 2.5, 2.5625, 2.625, 2.6875, 2.75,
|
||||
(0,45): 2.8125, 2.875, 2.9375, 3, 3.0625, 3.125, 3.1875, 3.25, 3.3125,
|
||||
(0,54): 3.375, 3.4375, 3.5, 3.5625, 3.625, 3.6875, 3.75, 3.8125, 3.875,
|
||||
(0,63): 3.9375, 4, 4.0625, 4.125, 4.1875, 4.25, 4.3125, 4.375, 4.4375,
|
||||
(0,72): 4.5, 4.5625, 4.625, 4.6875, 4.75, 4.8125, 4.875, 4.9375, 5,
|
||||
(0,81): 5.0625, 5.125, 5.1875, 5.25, 5.3125, 5.375, 5.4375, 5.5,
|
||||
(0,89): 5.5625, 5.625, 5.6875, 5.75, 5.8125, 5.875, 5.9375, 6, 6.0625,
|
||||
(0,98): 6.125, 6.1875, 6.25, 6.3125, 6.375, 6.4375, 6.5, 6.5625, 6.625,
|
||||
(0,107): 6.6875, 6.75, 6.8125, 6.875, 6.9375, 7, 7.0625, 7.125, 7.1875,
|
||||
(0,116): 7.25, 7.3125, 7.375, 7.4375, 7.5, 7.5625, 7.625, 7.6875, 7.75,
|
||||
(0,125): 7.8125, 7.875, 7.9375,
|
||||
(1,0): 127, 0.0703125, 0.132813, 0.195313, 0.257813, 0.320313,
|
||||
(1,6): 0.382813, 0.445313, 0.507813, 0.570313, 0.632813, 0.695313,
|
||||
(1,12): 0.757813, 0.820313, 0.882813, 0.945313, 1.00781, 1.07031,
|
||||
(1,18): 1.13281, 1.19531, 1.25781, 1.32031, 1.38281, 1.44531, 1.50781,
|
||||
(1,25): 1.57031, 1.63281, 1.69531, 1.75781, 1.82031, 1.88281, 1.94531,
|
||||
(1,32): 2.00781, 2.07031, 2.13281, 2.19531, 2.25781, 2.32031, 2.38281,
|
||||
(1,39): 2.44531, 2.50781, 2.57031, 2.63281, 2.69531, 2.75781, 2.82031,
|
||||
(1,46): 2.88281, 2.94531, 3.00781, 3.07031, 3.13281, 3.19531, 3.25781,
|
||||
(1,53): 3.32031, 3.38281, 3.44531, 3.50781, 3.57031, 3.63281, 3.69531,
|
||||
(1,60): 3.75781, 3.82031, 3.88281, 3.94531, 4.00781, 4.07031, 4.13281,
|
||||
(1,67): 4.19531, 4.25781, 4.32031, 4.38281, 4.44531, 4.50781, 4.57031,
|
||||
(1,74): 4.63281, 4.69531, 4.75781, 4.82031, 4.88281, 4.94531, 5.00781,
|
||||
(1,81): 5.07031, 5.13281, 5.19531, 5.25781, 5.32031, 5.38281, 5.44531,
|
||||
(1,88): 5.50781, 5.57031, 5.63281, 5.69531, 5.75781, 5.82031, 5.88281,
|
||||
(1,95): 5.94531, 6.00781, 6.07031, 6.13281, 6.19531, 6.25781, 6.32031,
|
||||
(1,102): 6.38281, 6.44531, 6.50781, 6.57031, 6.63281, 6.69531, 6.75781,
|
||||
(1,109): 6.82031, 6.88281, 6.94531, 7.00781, 7.07031, 7.13281, 7.19531,
|
||||
(1,116): 7.25781, 7.32031, 7.38281, 7.44531, 7.50781, 7.57031, 7.63281,
|
||||
(1,123): 7.69531, 7.75781, 7.82031, 7.88281, 7.94531,
|
||||
(2,0): 126, 0.078125, 0.140625, 0.203125, 0.265625, 0.328125, 0.390625,
|
||||
(2,7): 0.453125, 0.515625, 0.578125, 0.640625, 0.703125, 0.765625,
|
||||
(2,13): 0.828125, 0.890625, 0.953125, 1.01563, 1.07813, 1.14063,
|
||||
(2,19): 1.20313, 1.26563, 1.32813, 1.39063, 1.45313, 1.51563, 1.57813,
|
||||
(2,26): 1.64063, 1.70313, 1.76563, 1.82813, 1.89063, 1.95313, 2.01563,
|
||||
(2,33): 2.07813, 2.14063, 2.20313, 2.26563, 2.32813, 2.39063, 2.45313,
|
||||
(2,40): 2.51563, 2.57813, 2.64063, 2.70313, 2.76563, 2.82813, 2.89063,
|
||||
(2,47): 2.95313, 3.01563, 3.07813, 3.14063, 3.20313, 3.26563, 3.32813,
|
||||
(2,54): 3.39063, 3.45313, 3.51563, 3.57813, 3.64063, 3.70313, 3.76563,
|
||||
(2,61): 3.82813, 3.89063, 3.95313, 4.01563, 4.07813, 4.14063, 4.20313,
|
||||
(2,68): 4.26563, 4.32813, 4.39063, 4.45313, 4.51563, 4.57813, 4.64063,
|
||||
(2,75): 4.70313, 4.76563, 4.82813, 4.89063, 4.95313, 5.01563, 5.07813,
|
||||
(2,82): 5.14063, 5.20313, 5.26563, 5.32813, 5.39063, 5.45313, 5.51563,
|
||||
(2,89): 5.57813, 5.64063, 5.70313, 5.76563, 5.82813, 5.89063, 5.95313,
|
||||
(2,96): 6.01563, 6.07813, 6.14063, 6.20313, 6.26563, 6.32813, 6.39063,
|
||||
(2,103): 6.45313, 6.51563, 6.57813, 6.64063, 6.70313, 6.76563, 6.82813,
|
||||
(2,110): 6.89063, 6.95313, 7.01563, 7.07813, 7.14063, 7.20313, 7.26563,
|
||||
(2,117): 7.32813, 7.39063, 7.45313, 7.51563, 7.57813, 7.64063, 7.70313,
|
||||
(2,124): 7.76563, 7.82813, 7.89063, 7.95313,
|
||||
(3,0): 125, 0.0859375, 0.148438, 0.210938, 0.273438, 0.335938,
|
||||
(3,6): 0.398438, 0.460938, 0.523438, 0.585938, 0.648438, 0.710938,
|
||||
(3,12): 0.773438, 0.835938, 0.898438, 0.960938, 1.02344, 1.08594,
|
||||
(3,18): 1.14844, 1.21094, 1.27344, 1.33594, 1.39844, 1.46094, 1.52344,
|
||||
(3,25): 1.58594, 1.64844, 1.71094, 1.77344, 1.83594, 1.89844, 1.96094,
|
||||
(3,32): 2.02344, 2.08594, 2.14844, 2.21094, 2.27344, 2.33594, 2.39844,
|
||||
(3,39): 2.46094, 2.52344, 2.58594, 2.64844, 2.71094, 2.77344, 2.83594,
|
||||
(3,46): 2.89844, 2.96094, 3.02344, 3.08594, 3.14844, 3.21094, 3.27344,
|
||||
(3,53): 3.33594, 3.39844, 3.46094, 3.52344, 3.58594, 3.64844, 3.71094,
|
||||
(3,60): 3.77344, 3.83594, 3.89844, 3.96094, 4.02344, 4.08594, 4.14844,
|
||||
(3,67): 4.21094, 4.27344, 4.33594, 4.39844, 4.46094, 4.52344, 4.58594,
|
||||
(3,74): 4.64844, 4.71094, 4.77344, 4.83594, 4.89844, 4.96094, 5.02344,
|
||||
(3,81): 5.08594, 5.14844, 5.21094, 5.27344, 5.33594, 5.39844, 5.46094,
|
||||
(3,88): 5.52344, 5.58594, 5.64844, 5.71094, 5.77344, 5.83594, 5.89844,
|
||||
(3,95): 5.96094, 6.02344, 6.08594, 6.14844, 6.21094, 6.27344, 6.33594,
|
||||
(3,102): 6.39844, 6.46094, 6.52344, 6.58594, 6.64844, 6.71094, 6.77344,
|
||||
(3,109): 6.83594, 6.89844, 6.96094, 7.02344, 7.08594, 7.14844, 7.21094,
|
||||
(3,116): 7.27344, 7.33594, 7.39844, 7.46094, 7.52344, 7.58594, 7.64844,
|
||||
(3,123): 7.71094, 7.77344, 7.83594, 7.89844, 7.96094,
|
||||
(4,0): 124, 0.09375, 0.15625, 0.21875, 0.28125, 0.34375, 0.40625,
|
||||
(4,7): 0.46875, 0.53125, 0.59375, 0.65625, 0.71875, 0.78125, 0.84375,
|
||||
(4,14): 0.90625, 0.96875, 1.03125, 1.09375, 1.15625, 1.21875, 1.28125,
|
||||
(4,21): 1.34375, 1.40625, 1.46875, 1.53125, 1.59375, 1.65625, 1.71875,
|
||||
(4,28): 1.78125, 1.84375, 1.90625, 1.96875, 2.03125, 2.09375, 2.15625,
|
||||
(4,35): 2.21875, 2.28125, 2.34375, 2.40625, 2.46875, 2.53125, 2.59375,
|
||||
(4,42): 2.65625, 2.71875, 2.78125, 2.84375, 2.90625, 2.96875, 3.03125,
|
||||
(4,49): 3.09375, 3.15625, 3.21875, 3.28125, 3.34375, 3.40625, 3.46875,
|
||||
(4,56): 3.53125, 3.59375, 3.65625, 3.71875, 3.78125, 3.84375, 3.90625,
|
||||
(4,63): 3.96875, 4.03125, 4.09375, 4.15625, 4.21875, 4.28125, 4.34375,
|
||||
(4,70): 4.40625, 4.46875, 4.53125, 4.59375, 4.65625, 4.71875, 4.78125,
|
||||
(4,77): 4.84375, 4.90625, 4.96875, 5.03125, 5.09375, 5.15625, 5.21875,
|
||||
(4,84): 5.28125, 5.34375, 5.40625, 5.46875, 5.53125, 5.59375, 5.65625,
|
||||
(4,91): 5.71875, 5.78125, 5.84375, 5.90625, 5.96875, 6.03125, 6.09375,
|
||||
(4,98): 6.15625, 6.21875, 6.28125, 6.34375, 6.40625, 6.46875, 6.53125,
|
||||
(4,105): 6.59375, 6.65625, 6.71875, 6.78125, 6.84375, 6.90625, 6.96875,
|
||||
(4,112): 7.03125, 7.09375, 7.15625, 7.21875, 7.28125, 7.34375, 7.40625,
|
||||
(4,119): 7.46875, 7.53125, 7.59375, 7.65625, 7.71875, 7.78125, 7.84375,
|
||||
(4,126): 7.90625, 7.96875,
|
||||
(5,0): 123, 0.101563, 0.164063, 0.226563, 0.289063, 0.351563, 0.414063,
|
||||
(5,7): 0.476563, 0.539063, 0.601563, 0.664063, 0.726563, 0.789063,
|
||||
(5,13): 0.851563, 0.914063, 0.976563, 1.03906, 1.10156, 1.16406,
|
||||
(5,19): 1.22656, 1.28906, 1.35156, 1.41406, 1.47656, 1.53906, 1.60156,
|
||||
(5,26): 1.66406, 1.72656, 1.78906, 1.85156, 1.91406, 1.97656, 2.03906,
|
||||
(5,33): 2.10156, 2.16406, 2.22656, 2.28906, 2.35156, 2.41406, 2.47656,
|
||||
(5,40): 2.53906, 2.60156, 2.66406, 2.72656, 2.78906, 2.85156, 2.91406,
|
||||
(5,47): 2.97656, 3.03906, 3.10156, 3.16406, 3.22656, 3.28906, 3.35156,
|
||||
(5,54): 3.41406, 3.47656, 3.53906, 3.60156, 3.66406, 3.72656, 3.78906,
|
||||
(5,61): 3.85156, 3.91406, 3.97656, 4.03906, 4.10156, 4.16406, 4.22656,
|
||||
(5,68): 4.28906, 4.35156, 4.41406, 4.47656, 4.53906, 4.60156, 4.66406,
|
||||
(5,75): 4.72656, 4.78906, 4.85156, 4.91406, 4.97656, 5.03906, 5.10156,
|
||||
(5,82): 5.16406, 5.22656, 5.28906, 5.35156, 5.41406, 5.47656, 5.53906,
|
||||
(5,89): 5.60156, 5.66406, 5.72656, 5.78906, 5.85156, 5.91406, 5.97656,
|
||||
(5,96): 6.03906, 6.10156, 6.16406, 6.22656, 6.28906, 6.35156, 6.41406,
|
||||
(5,103): 6.47656, 6.53906, 6.60156, 6.66406, 6.72656, 6.78906, 6.85156,
|
||||
(5,110): 6.91406, 6.97656, 7.03906, 7.10156, 7.16406, 7.22656, 7.28906,
|
||||
(5,117): 7.35156, 7.41406, 7.47656, 7.53906, 7.60156, 7.66406, 7.72656,
|
||||
(5,124): 7.78906, 7.85156, 7.91406, 7.97656,
|
||||
(6,0): 122, 0.109375, 0.171875, 0.234375, 0.296875, 0.359375, 0.421875,
|
||||
(6,7): 0.484375, 0.546875, 0.609375, 0.671875, 0.734375, 0.796875,
|
||||
(6,13): 0.859375, 0.921875, 0.984375, 1.04688, 1.10938, 1.17188,
|
||||
(6,19): 1.23438, 1.29688, 1.35938, 1.42188, 1.48438, 1.54688, 1.60938,
|
||||
(6,26): 1.67188, 1.73438, 1.79688, 1.85938, 1.92188, 1.98438, 2.04688,
|
||||
(6,33): 2.10938, 2.17188, 2.23438, 2.29688, 2.35938, 2.42188, 2.48438,
|
||||
(6,40): 2.54688, 2.60938, 2.67188, 2.73438, 2.79688, 2.85938, 2.92188,
|
||||
(6,47): 2.98438, 3.04688, 3.10938, 3.17188, 3.23438, 3.29688, 3.35938,
|
||||
(6,54): 3.42188, 3.48438, 3.54688, 3.60938, 3.67188, 3.73438, 3.79688,
|
||||
(6,61): 3.85938, 3.92188, 3.98438, 4.04688, 4.10938, 4.17188, 4.23438,
|
||||
(6,68): 4.29688, 4.35938, 4.42188, 4.48438, 4.54688, 4.60938, 4.67188,
|
||||
(6,75): 4.73438, 4.79688, 4.85938, 4.92188, 4.98438, 5.04688, 5.10938,
|
||||
(6,82): 5.17188, 5.23438, 5.29688, 5.35938, 5.42188, 5.48438, 5.54688,
|
||||
(6,89): 5.60938, 5.67188, 5.73438, 5.79688, 5.85938, 5.92188, 5.98438,
|
||||
(6,96): 6.04688, 6.10938, 6.17188, 6.23438, 6.29688, 6.35938, 6.42188,
|
||||
(6,103): 6.48438, 6.54688, 6.60938, 6.67188, 6.73438, 6.79688, 6.85938,
|
||||
(6,110): 6.92188, 6.98438, 7.04688, 7.10938, 7.17188, 7.23438, 7.29688,
|
||||
(6,117): 7.35938, 7.42188, 7.48438, 7.54688, 7.60938, 7.67188, 7.73438,
|
||||
(6,124): 7.79688, 7.85938, 7.92188, 7.98438,
|
||||
(7,0): 121, 0.117188, 0.179688, 0.242188, 0.304688, 0.367188, 0.429688,
|
||||
(7,7): 0.492188, 0.554688, 0.617188, 0.679688, 0.742188, 0.804688,
|
||||
(7,13): 0.867188, 0.929688, 0.992188, 1.05469, 1.11719, 1.17969,
|
||||
(7,19): 1.24219, 1.30469, 1.36719, 1.42969, 1.49219, 1.55469, 1.61719,
|
||||
(7,26): 1.67969, 1.74219, 1.80469, 1.86719, 1.92969, 1.99219, 2.05469,
|
||||
(7,33): 2.11719, 2.17969, 2.24219, 2.30469, 2.36719, 2.42969, 2.49219,
|
||||
(7,40): 2.55469, 2.61719, 2.67969, 2.74219, 2.80469, 2.86719, 2.92969,
|
||||
(7,47): 2.99219, 3.05469, 3.11719, 3.17969, 3.24219, 3.30469, 3.36719,
|
||||
(7,54): 3.42969, 3.49219, 3.55469, 3.61719, 3.67969, 3.74219, 3.80469,
|
||||
(7,61): 3.86719, 3.92969, 3.99219, 4.05469, 4.11719, 4.17969, 4.24219,
|
||||
(7,68): 4.30469, 4.36719, 4.42969, 4.49219, 4.55469, 4.61719, 4.67969,
|
||||
(7,75): 4.74219, 4.80469, 4.86719, 4.92969, 4.99219, 5.05469, 5.11719,
|
||||
(7,82): 5.17969, 5.24219, 5.30469, 5.36719, 5.42969, 5.49219, 5.55469,
|
||||
(7,89): 5.61719, 5.67969, 5.74219, 5.80469, 5.86719, 5.92969, 5.99219,
|
||||
(7,96): 6.05469, 6.11719, 6.17969, 6.24219, 6.30469, 6.36719, 6.42969,
|
||||
(7,103): 6.49219, 6.55469, 6.61719, 6.67969, 6.74219, 6.80469, 6.86719,
|
||||
(7,110): 6.92969, 6.99219, 7.05469, 7.11719, 7.17969, 7.24219, 7.30469,
|
||||
(7,117): 7.36719, 7.42969, 7.49219, 7.55469, 7.61719, 7.67969, 7.74219,
|
||||
(7,124): 7.80469, 7.86719, 7.92969, 7.99219
|
||||
}
|
||||
ATTRIBUTE "DS128BITS" {
|
||||
DATATYPE 128-bit little-endian floating-point 80-bit precision
|
||||
DATASPACE SIMPLE { ( 1024 ) / ( 1024 ) }
|
||||
DATA {
|
||||
(0): 128, 0.0625, 0.125, 0.1875, 0.25, 0.3125, 0.375, 0.4375, 0.5,
|
||||
(9): 0.5625, 0.625, 0.6875, 0.75, 0.8125, 0.875, 0.9375, 1, 1.0625,
|
||||
(18): 1.125, 1.1875, 1.25, 1.3125, 1.375, 1.4375, 1.5, 1.5625,
|
||||
(26): 1.625, 1.6875, 1.75, 1.8125, 1.875, 1.9375, 2, 2.0625, 2.125,
|
||||
(35): 2.1875, 2.25, 2.3125, 2.375, 2.4375, 2.5, 2.5625, 2.625,
|
||||
(43): 2.6875, 2.75, 2.8125, 2.875, 2.9375, 3, 3.0625, 3.125, 3.1875,
|
||||
(52): 3.25, 3.3125, 3.375, 3.4375, 3.5, 3.5625, 3.625, 3.6875, 3.75,
|
||||
(61): 3.8125, 3.875, 3.9375, 4, 4.0625, 4.125, 4.1875, 4.25, 4.3125,
|
||||
(70): 4.375, 4.4375, 4.5, 4.5625, 4.625, 4.6875, 4.75, 4.8125,
|
||||
(78): 4.875, 4.9375, 5, 5.0625, 5.125, 5.1875, 5.25, 5.3125, 5.375,
|
||||
(87): 5.4375, 5.5, 5.5625, 5.625, 5.6875, 5.75, 5.8125, 5.875,
|
||||
(95): 5.9375, 6, 6.0625, 6.125, 6.1875, 6.25, 6.3125, 6.375, 6.4375,
|
||||
(104): 6.5, 6.5625, 6.625, 6.6875, 6.75, 6.8125, 6.875, 6.9375, 7,
|
||||
(113): 7.0625, 7.125, 7.1875, 7.25, 7.3125, 7.375, 7.4375, 7.5,
|
||||
(121): 7.5625, 7.625, 7.6875, 7.75, 7.8125, 7.875, 7.9375, 127,
|
||||
(129): 0.0703125, 0.132813, 0.195313, 0.257813, 0.320313, 0.382813,
|
||||
(135): 0.445313, 0.507813, 0.570313, 0.632813, 0.695313, 0.757813,
|
||||
(141): 0.820313, 0.882813, 0.945313, 1.00781, 1.07031, 1.13281,
|
||||
(147): 1.19531, 1.25781, 1.32031, 1.38281, 1.44531, 1.50781,
|
||||
(153): 1.57031, 1.63281, 1.69531, 1.75781, 1.82031, 1.88281,
|
||||
(159): 1.94531, 2.00781, 2.07031, 2.13281, 2.19531, 2.25781,
|
||||
(165): 2.32031, 2.38281, 2.44531, 2.50781, 2.57031, 2.63281,
|
||||
(171): 2.69531, 2.75781, 2.82031, 2.88281, 2.94531, 3.00781,
|
||||
(177): 3.07031, 3.13281, 3.19531, 3.25781, 3.32031, 3.38281,
|
||||
(183): 3.44531, 3.50781, 3.57031, 3.63281, 3.69531, 3.75781,
|
||||
(189): 3.82031, 3.88281, 3.94531, 4.00781, 4.07031, 4.13281,
|
||||
(195): 4.19531, 4.25781, 4.32031, 4.38281, 4.44531, 4.50781,
|
||||
(201): 4.57031, 4.63281, 4.69531, 4.75781, 4.82031, 4.88281,
|
||||
(207): 4.94531, 5.00781, 5.07031, 5.13281, 5.19531, 5.25781,
|
||||
(213): 5.32031, 5.38281, 5.44531, 5.50781, 5.57031, 5.63281,
|
||||
(219): 5.69531, 5.75781, 5.82031, 5.88281, 5.94531, 6.00781,
|
||||
(225): 6.07031, 6.13281, 6.19531, 6.25781, 6.32031, 6.38281,
|
||||
(231): 6.44531, 6.50781, 6.57031, 6.63281, 6.69531, 6.75781,
|
||||
(237): 6.82031, 6.88281, 6.94531, 7.00781, 7.07031, 7.13281,
|
||||
(243): 7.19531, 7.25781, 7.32031, 7.38281, 7.44531, 7.50781,
|
||||
(249): 7.57031, 7.63281, 7.69531, 7.75781, 7.82031, 7.88281,
|
||||
(255): 7.94531, 126, 0.078125, 0.140625, 0.203125, 0.265625,
|
||||
(261): 0.328125, 0.390625, 0.453125, 0.515625, 0.578125, 0.640625,
|
||||
(267): 0.703125, 0.765625, 0.828125, 0.890625, 0.953125, 1.01563,
|
||||
(273): 1.07813, 1.14063, 1.20313, 1.26563, 1.32813, 1.39063,
|
||||
(279): 1.45313, 1.51563, 1.57813, 1.64063, 1.70313, 1.76563,
|
||||
(285): 1.82813, 1.89063, 1.95313, 2.01563, 2.07813, 2.14063,
|
||||
(291): 2.20313, 2.26563, 2.32813, 2.39063, 2.45313, 2.51563,
|
||||
(297): 2.57813, 2.64063, 2.70313, 2.76563, 2.82813, 2.89063,
|
||||
(303): 2.95313, 3.01563, 3.07813, 3.14063, 3.20313, 3.26563,
|
||||
(309): 3.32813, 3.39063, 3.45313, 3.51563, 3.57813, 3.64063,
|
||||
(315): 3.70313, 3.76563, 3.82813, 3.89063, 3.95313, 4.01563,
|
||||
(321): 4.07813, 4.14063, 4.20313, 4.26563, 4.32813, 4.39063,
|
||||
(327): 4.45313, 4.51563, 4.57813, 4.64063, 4.70313, 4.76563,
|
||||
(333): 4.82813, 4.89063, 4.95313, 5.01563, 5.07813, 5.14063,
|
||||
(339): 5.20313, 5.26563, 5.32813, 5.39063, 5.45313, 5.51563,
|
||||
(345): 5.57813, 5.64063, 5.70313, 5.76563, 5.82813, 5.89063,
|
||||
(351): 5.95313, 6.01563, 6.07813, 6.14063, 6.20313, 6.26563,
|
||||
(357): 6.32813, 6.39063, 6.45313, 6.51563, 6.57813, 6.64063,
|
||||
(363): 6.70313, 6.76563, 6.82813, 6.89063, 6.95313, 7.01563,
|
||||
(369): 7.07813, 7.14063, 7.20313, 7.26563, 7.32813, 7.39063,
|
||||
(375): 7.45313, 7.51563, 7.57813, 7.64063, 7.70313, 7.76563,
|
||||
(381): 7.82813, 7.89063, 7.95313, 125, 0.0859375, 0.148438,
|
||||
(387): 0.210938, 0.273438, 0.335938, 0.398438, 0.460938, 0.523438,
|
||||
(393): 0.585938, 0.648438, 0.710938, 0.773438, 0.835938, 0.898438,
|
||||
(399): 0.960938, 1.02344, 1.08594, 1.14844, 1.21094, 1.27344,
|
||||
(405): 1.33594, 1.39844, 1.46094, 1.52344, 1.58594, 1.64844,
|
||||
(411): 1.71094, 1.77344, 1.83594, 1.89844, 1.96094, 2.02344,
|
||||
(417): 2.08594, 2.14844, 2.21094, 2.27344, 2.33594, 2.39844,
|
||||
(423): 2.46094, 2.52344, 2.58594, 2.64844, 2.71094, 2.77344,
|
||||
(429): 2.83594, 2.89844, 2.96094, 3.02344, 3.08594, 3.14844,
|
||||
(435): 3.21094, 3.27344, 3.33594, 3.39844, 3.46094, 3.52344,
|
||||
(441): 3.58594, 3.64844, 3.71094, 3.77344, 3.83594, 3.89844,
|
||||
(447): 3.96094, 4.02344, 4.08594, 4.14844, 4.21094, 4.27344,
|
||||
(453): 4.33594, 4.39844, 4.46094, 4.52344, 4.58594, 4.64844,
|
||||
(459): 4.71094, 4.77344, 4.83594, 4.89844, 4.96094, 5.02344,
|
||||
(465): 5.08594, 5.14844, 5.21094, 5.27344, 5.33594, 5.39844,
|
||||
(471): 5.46094, 5.52344, 5.58594, 5.64844, 5.71094, 5.77344,
|
||||
(477): 5.83594, 5.89844, 5.96094, 6.02344, 6.08594, 6.14844,
|
||||
(483): 6.21094, 6.27344, 6.33594, 6.39844, 6.46094, 6.52344,
|
||||
(489): 6.58594, 6.64844, 6.71094, 6.77344, 6.83594, 6.89844,
|
||||
(495): 6.96094, 7.02344, 7.08594, 7.14844, 7.21094, 7.27344,
|
||||
(501): 7.33594, 7.39844, 7.46094, 7.52344, 7.58594, 7.64844,
|
||||
(507): 7.71094, 7.77344, 7.83594, 7.89844, 7.96094, 124, 0.09375,
|
||||
(514): 0.15625, 0.21875, 0.28125, 0.34375, 0.40625, 0.46875,
|
||||
(520): 0.53125, 0.59375, 0.65625, 0.71875, 0.78125, 0.84375,
|
||||
(526): 0.90625, 0.96875, 1.03125, 1.09375, 1.15625, 1.21875,
|
||||
(532): 1.28125, 1.34375, 1.40625, 1.46875, 1.53125, 1.59375,
|
||||
(538): 1.65625, 1.71875, 1.78125, 1.84375, 1.90625, 1.96875,
|
||||
(544): 2.03125, 2.09375, 2.15625, 2.21875, 2.28125, 2.34375,
|
||||
(550): 2.40625, 2.46875, 2.53125, 2.59375, 2.65625, 2.71875,
|
||||
(556): 2.78125, 2.84375, 2.90625, 2.96875, 3.03125, 3.09375,
|
||||
(562): 3.15625, 3.21875, 3.28125, 3.34375, 3.40625, 3.46875,
|
||||
(568): 3.53125, 3.59375, 3.65625, 3.71875, 3.78125, 3.84375,
|
||||
(574): 3.90625, 3.96875, 4.03125, 4.09375, 4.15625, 4.21875,
|
||||
(580): 4.28125, 4.34375, 4.40625, 4.46875, 4.53125, 4.59375,
|
||||
(586): 4.65625, 4.71875, 4.78125, 4.84375, 4.90625, 4.96875,
|
||||
(592): 5.03125, 5.09375, 5.15625, 5.21875, 5.28125, 5.34375,
|
||||
(598): 5.40625, 5.46875, 5.53125, 5.59375, 5.65625, 5.71875,
|
||||
(604): 5.78125, 5.84375, 5.90625, 5.96875, 6.03125, 6.09375,
|
||||
(610): 6.15625, 6.21875, 6.28125, 6.34375, 6.40625, 6.46875,
|
||||
(616): 6.53125, 6.59375, 6.65625, 6.71875, 6.78125, 6.84375,
|
||||
(622): 6.90625, 6.96875, 7.03125, 7.09375, 7.15625, 7.21875,
|
||||
(628): 7.28125, 7.34375, 7.40625, 7.46875, 7.53125, 7.59375,
|
||||
(634): 7.65625, 7.71875, 7.78125, 7.84375, 7.90625, 7.96875, 123,
|
||||
(641): 0.101563, 0.164063, 0.226563, 0.289063, 0.351563, 0.414063,
|
||||
(647): 0.476563, 0.539063, 0.601563, 0.664063, 0.726563, 0.789063,
|
||||
(653): 0.851563, 0.914063, 0.976563, 1.03906, 1.10156, 1.16406,
|
||||
(659): 1.22656, 1.28906, 1.35156, 1.41406, 1.47656, 1.53906,
|
||||
(665): 1.60156, 1.66406, 1.72656, 1.78906, 1.85156, 1.91406,
|
||||
(671): 1.97656, 2.03906, 2.10156, 2.16406, 2.22656, 2.28906,
|
||||
(677): 2.35156, 2.41406, 2.47656, 2.53906, 2.60156, 2.66406,
|
||||
(683): 2.72656, 2.78906, 2.85156, 2.91406, 2.97656, 3.03906,
|
||||
(689): 3.10156, 3.16406, 3.22656, 3.28906, 3.35156, 3.41406,
|
||||
(695): 3.47656, 3.53906, 3.60156, 3.66406, 3.72656, 3.78906,
|
||||
(701): 3.85156, 3.91406, 3.97656, 4.03906, 4.10156, 4.16406,
|
||||
(707): 4.22656, 4.28906, 4.35156, 4.41406, 4.47656, 4.53906,
|
||||
(713): 4.60156, 4.66406, 4.72656, 4.78906, 4.85156, 4.91406,
|
||||
(719): 4.97656, 5.03906, 5.10156, 5.16406, 5.22656, 5.28906,
|
||||
(725): 5.35156, 5.41406, 5.47656, 5.53906, 5.60156, 5.66406,
|
||||
(731): 5.72656, 5.78906, 5.85156, 5.91406, 5.97656, 6.03906,
|
||||
(737): 6.10156, 6.16406, 6.22656, 6.28906, 6.35156, 6.41406,
|
||||
(743): 6.47656, 6.53906, 6.60156, 6.66406, 6.72656, 6.78906,
|
||||
(749): 6.85156, 6.91406, 6.97656, 7.03906, 7.10156, 7.16406,
|
||||
(755): 7.22656, 7.28906, 7.35156, 7.41406, 7.47656, 7.53906,
|
||||
(761): 7.60156, 7.66406, 7.72656, 7.78906, 7.85156, 7.91406,
|
||||
(767): 7.97656, 122, 0.109375, 0.171875, 0.234375, 0.296875,
|
||||
(773): 0.359375, 0.421875, 0.484375, 0.546875, 0.609375, 0.671875,
|
||||
(779): 0.734375, 0.796875, 0.859375, 0.921875, 0.984375, 1.04688,
|
||||
(785): 1.10938, 1.17188, 1.23438, 1.29688, 1.35938, 1.42188,
|
||||
(791): 1.48438, 1.54688, 1.60938, 1.67188, 1.73438, 1.79688,
|
||||
(797): 1.85938, 1.92188, 1.98438, 2.04688, 2.10938, 2.17188,
|
||||
(803): 2.23438, 2.29688, 2.35938, 2.42188, 2.48438, 2.54688,
|
||||
(809): 2.60938, 2.67188, 2.73438, 2.79688, 2.85938, 2.92188,
|
||||
(815): 2.98438, 3.04688, 3.10938, 3.17188, 3.23438, 3.29688,
|
||||
(821): 3.35938, 3.42188, 3.48438, 3.54688, 3.60938, 3.67188,
|
||||
(827): 3.73438, 3.79688, 3.85938, 3.92188, 3.98438, 4.04688,
|
||||
(833): 4.10938, 4.17188, 4.23438, 4.29688, 4.35938, 4.42188,
|
||||
(839): 4.48438, 4.54688, 4.60938, 4.67188, 4.73438, 4.79688,
|
||||
(845): 4.85938, 4.92188, 4.98438, 5.04688, 5.10938, 5.17188,
|
||||
(851): 5.23438, 5.29688, 5.35938, 5.42188, 5.48438, 5.54688,
|
||||
(857): 5.60938, 5.67188, 5.73438, 5.79688, 5.85938, 5.92188,
|
||||
(863): 5.98438, 6.04688, 6.10938, 6.17188, 6.23438, 6.29688,
|
||||
(869): 6.35938, 6.42188, 6.48438, 6.54688, 6.60938, 6.67188,
|
||||
(875): 6.73438, 6.79688, 6.85938, 6.92188, 6.98438, 7.04688,
|
||||
(881): 7.10938, 7.17188, 7.23438, 7.29688, 7.35938, 7.42188,
|
||||
(887): 7.48438, 7.54688, 7.60938, 7.67188, 7.73438, 7.79688,
|
||||
(893): 7.85938, 7.92188, 7.98438, 121, 0.117188, 0.179688, 0.242188,
|
||||
(900): 0.304688, 0.367188, 0.429688, 0.492188, 0.554688, 0.617188,
|
||||
(906): 0.679688, 0.742188, 0.804688, 0.867188, 0.929688, 0.992188,
|
||||
(912): 1.05469, 1.11719, 1.17969, 1.24219, 1.30469, 1.36719,
|
||||
(918): 1.42969, 1.49219, 1.55469, 1.61719, 1.67969, 1.74219,
|
||||
(924): 1.80469, 1.86719, 1.92969, 1.99219, 2.05469, 2.11719,
|
||||
(930): 2.17969, 2.24219, 2.30469, 2.36719, 2.42969, 2.49219,
|
||||
(936): 2.55469, 2.61719, 2.67969, 2.74219, 2.80469, 2.86719,
|
||||
(942): 2.92969, 2.99219, 3.05469, 3.11719, 3.17969, 3.24219,
|
||||
(948): 3.30469, 3.36719, 3.42969, 3.49219, 3.55469, 3.61719,
|
||||
(954): 3.67969, 3.74219, 3.80469, 3.86719, 3.92969, 3.99219,
|
||||
(960): 4.05469, 4.11719, 4.17969, 4.24219, 4.30469, 4.36719,
|
||||
(966): 4.42969, 4.49219, 4.55469, 4.61719, 4.67969, 4.74219,
|
||||
(972): 4.80469, 4.86719, 4.92969, 4.99219, 5.05469, 5.11719,
|
||||
(978): 5.17969, 5.24219, 5.30469, 5.36719, 5.42969, 5.49219,
|
||||
(984): 5.55469, 5.61719, 5.67969, 5.74219, 5.80469, 5.86719,
|
||||
(990): 5.92969, 5.99219, 6.05469, 6.11719, 6.17969, 6.24219,
|
||||
(996): 6.30469, 6.36719, 6.42969, 6.49219, 6.55469, 6.61719,
|
||||
(1002): 6.67969, 6.74219, 6.80469, 6.86719, 6.92969, 6.99219,
|
||||
(1008): 7.05469, 7.11719, 7.17969, 7.24219, 7.30469, 7.36719,
|
||||
(1014): 7.42969, 7.49219, 7.55469, 7.61719, 7.67969, 7.74219,
|
||||
(1020): 7.80469, 7.86719, 7.92969, 7.99219
|
||||
}
|
||||
}
|
||||
}
|
||||
DATASET "DS32BITS" {
|
||||
DATATYPE H5T_IEEE_F32LE
|
||||
DATASPACE SIMPLE { ( 8, 32 ) / ( 8, 32 ) }
|
||||
STORAGE_LAYOUT {
|
||||
CONTIGUOUS
|
||||
SIZE 1024
|
||||
OFFSET 2048
|
||||
}
|
||||
FILTERS {
|
||||
NONE
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE H5D_FILL_VALUE_DEFAULT
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
}
|
||||
DATA {
|
||||
(0,0): 32, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3,
|
||||
(0,13): 3.25, 3.5, 3.75, 4, 4.25, 4.5, 4.75, 5, 5.25, 5.5, 5.75, 6,
|
||||
(0,25): 6.25, 6.5, 6.75, 7, 7.25, 7.5, 7.75,
|
||||
(1,0): 31, 0.28125, 0.53125, 0.78125, 1.03125, 1.28125, 1.53125,
|
||||
(1,7): 1.78125, 2.03125, 2.28125, 2.53125, 2.78125, 3.03125, 3.28125,
|
||||
(1,14): 3.53125, 3.78125, 4.03125, 4.28125, 4.53125, 4.78125, 5.03125,
|
||||
(1,21): 5.28125, 5.53125, 5.78125, 6.03125, 6.28125, 6.53125, 6.78125,
|
||||
(1,28): 7.03125, 7.28125, 7.53125, 7.78125,
|
||||
(2,0): 30, 0.3125, 0.5625, 0.8125, 1.0625, 1.3125, 1.5625, 1.8125,
|
||||
(2,8): 2.0625, 2.3125, 2.5625, 2.8125, 3.0625, 3.3125, 3.5625, 3.8125,
|
||||
(2,16): 4.0625, 4.3125, 4.5625, 4.8125, 5.0625, 5.3125, 5.5625, 5.8125,
|
||||
(2,24): 6.0625, 6.3125, 6.5625, 6.8125, 7.0625, 7.3125, 7.5625, 7.8125,
|
||||
(3,0): 29, 0.34375, 0.59375, 0.84375, 1.09375, 1.34375, 1.59375,
|
||||
(3,7): 1.84375, 2.09375, 2.34375, 2.59375, 2.84375, 3.09375, 3.34375,
|
||||
(3,14): 3.59375, 3.84375, 4.09375, 4.34375, 4.59375, 4.84375, 5.09375,
|
||||
(3,21): 5.34375, 5.59375, 5.84375, 6.09375, 6.34375, 6.59375, 6.84375,
|
||||
(3,28): 7.09375, 7.34375, 7.59375, 7.84375,
|
||||
(4,0): 28, 0.375, 0.625, 0.875, 1.125, 1.375, 1.625, 1.875, 2.125,
|
||||
(4,9): 2.375, 2.625, 2.875, 3.125, 3.375, 3.625, 3.875, 4.125, 4.375,
|
||||
(4,18): 4.625, 4.875, 5.125, 5.375, 5.625, 5.875, 6.125, 6.375, 6.625,
|
||||
(4,27): 6.875, 7.125, 7.375, 7.625, 7.875,
|
||||
(5,0): 27, 0.40625, 0.65625, 0.90625, 1.15625, 1.40625, 1.65625,
|
||||
(5,7): 1.90625, 2.15625, 2.40625, 2.65625, 2.90625, 3.15625, 3.40625,
|
||||
(5,14): 3.65625, 3.90625, 4.15625, 4.40625, 4.65625, 4.90625, 5.15625,
|
||||
(5,21): 5.40625, 5.65625, 5.90625, 6.15625, 6.40625, 6.65625, 6.90625,
|
||||
(5,28): 7.15625, 7.40625, 7.65625, 7.90625,
|
||||
(6,0): 26, 0.4375, 0.6875, 0.9375, 1.1875, 1.4375, 1.6875, 1.9375,
|
||||
(6,8): 2.1875, 2.4375, 2.6875, 2.9375, 3.1875, 3.4375, 3.6875, 3.9375,
|
||||
(6,16): 4.1875, 4.4375, 4.6875, 4.9375, 5.1875, 5.4375, 5.6875, 5.9375,
|
||||
(6,24): 6.1875, 6.4375, 6.6875, 6.9375, 7.1875, 7.4375, 7.6875, 7.9375,
|
||||
(7,0): 25, 0.46875, 0.71875, 0.96875, 1.21875, 1.46875, 1.71875,
|
||||
(7,7): 1.96875, 2.21875, 2.46875, 2.71875, 2.96875, 3.21875, 3.46875,
|
||||
(7,14): 3.71875, 3.96875, 4.21875, 4.46875, 4.71875, 4.96875, 5.21875,
|
||||
(7,21): 5.46875, 5.71875, 5.96875, 6.21875, 6.46875, 6.71875, 6.96875,
|
||||
(7,28): 7.21875, 7.46875, 7.71875, 7.96875
|
||||
}
|
||||
ATTRIBUTE "DS32BITS" {
|
||||
DATATYPE H5T_IEEE_F32LE
|
||||
DATASPACE SIMPLE { ( 256 ) / ( 256 ) }
|
||||
DATA {
|
||||
(0): 32, 0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 2.25, 2.5, 2.75, 3,
|
||||
(13): 3.25, 3.5, 3.75, 4, 4.25, 4.5, 4.75, 5, 5.25, 5.5, 5.75, 6,
|
||||
(25): 6.25, 6.5, 6.75, 7, 7.25, 7.5, 7.75, 31, 0.28125, 0.53125,
|
||||
(35): 0.78125, 1.03125, 1.28125, 1.53125, 1.78125, 2.03125, 2.28125,
|
||||
(42): 2.53125, 2.78125, 3.03125, 3.28125, 3.53125, 3.78125, 4.03125,
|
||||
(49): 4.28125, 4.53125, 4.78125, 5.03125, 5.28125, 5.53125, 5.78125,
|
||||
(56): 6.03125, 6.28125, 6.53125, 6.78125, 7.03125, 7.28125, 7.53125,
|
||||
(63): 7.78125, 30, 0.3125, 0.5625, 0.8125, 1.0625, 1.3125, 1.5625,
|
||||
(71): 1.8125, 2.0625, 2.3125, 2.5625, 2.8125, 3.0625, 3.3125,
|
||||
(78): 3.5625, 3.8125, 4.0625, 4.3125, 4.5625, 4.8125, 5.0625,
|
||||
(85): 5.3125, 5.5625, 5.8125, 6.0625, 6.3125, 6.5625, 6.8125,
|
||||
(92): 7.0625, 7.3125, 7.5625, 7.8125, 29, 0.34375, 0.59375, 0.84375,
|
||||
(100): 1.09375, 1.34375, 1.59375, 1.84375, 2.09375, 2.34375,
|
||||
(106): 2.59375, 2.84375, 3.09375, 3.34375, 3.59375, 3.84375,
|
||||
(112): 4.09375, 4.34375, 4.59375, 4.84375, 5.09375, 5.34375,
|
||||
(118): 5.59375, 5.84375, 6.09375, 6.34375, 6.59375, 6.84375,
|
||||
(124): 7.09375, 7.34375, 7.59375, 7.84375, 28, 0.375, 0.625, 0.875,
|
||||
(132): 1.125, 1.375, 1.625, 1.875, 2.125, 2.375, 2.625, 2.875,
|
||||
(140): 3.125, 3.375, 3.625, 3.875, 4.125, 4.375, 4.625, 4.875,
|
||||
(148): 5.125, 5.375, 5.625, 5.875, 6.125, 6.375, 6.625, 6.875,
|
||||
(156): 7.125, 7.375, 7.625, 7.875, 27, 0.40625, 0.65625, 0.90625,
|
||||
(164): 1.15625, 1.40625, 1.65625, 1.90625, 2.15625, 2.40625,
|
||||
(170): 2.65625, 2.90625, 3.15625, 3.40625, 3.65625, 3.90625,
|
||||
(176): 4.15625, 4.40625, 4.65625, 4.90625, 5.15625, 5.40625,
|
||||
(182): 5.65625, 5.90625, 6.15625, 6.40625, 6.65625, 6.90625,
|
||||
(188): 7.15625, 7.40625, 7.65625, 7.90625, 26, 0.4375, 0.6875,
|
||||
(195): 0.9375, 1.1875, 1.4375, 1.6875, 1.9375, 2.1875, 2.4375,
|
||||
(202): 2.6875, 2.9375, 3.1875, 3.4375, 3.6875, 3.9375, 4.1875,
|
||||
(209): 4.4375, 4.6875, 4.9375, 5.1875, 5.4375, 5.6875, 5.9375,
|
||||
(216): 6.1875, 6.4375, 6.6875, 6.9375, 7.1875, 7.4375, 7.6875,
|
||||
(223): 7.9375, 25, 0.46875, 0.71875, 0.96875, 1.21875, 1.46875,
|
||||
(230): 1.71875, 1.96875, 2.21875, 2.46875, 2.71875, 2.96875,
|
||||
(236): 3.21875, 3.46875, 3.71875, 3.96875, 4.21875, 4.46875,
|
||||
(242): 4.71875, 4.96875, 5.21875, 5.46875, 5.71875, 5.96875,
|
||||
(248): 6.21875, 6.46875, 6.71875, 6.96875, 7.21875, 7.46875,
|
||||
(254): 7.71875, 7.96875
|
||||
}
|
||||
}
|
||||
}
|
||||
DATASET "DS64BITS" {
|
||||
DATATYPE H5T_IEEE_F64LE
|
||||
DATASPACE SIMPLE { ( 8, 64 ) / ( 8, 64 ) }
|
||||
STORAGE_LAYOUT {
|
||||
CONTIGUOUS
|
||||
SIZE 4096
|
||||
OFFSET 6144
|
||||
}
|
||||
FILTERS {
|
||||
NONE
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE H5D_FILL_VALUE_DEFAULT
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
}
|
||||
DATA {
|
||||
(0,0): 64, 0.125, 0.25, 0.375, 0.5, 0.625, 0.75, 0.875, 1, 1.125, 1.25,
|
||||
(0,11): 1.375, 1.5, 1.625, 1.75, 1.875, 2, 2.125, 2.25, 2.375, 2.5,
|
||||
(0,21): 2.625, 2.75, 2.875, 3, 3.125, 3.25, 3.375, 3.5, 3.625, 3.75,
|
||||
(0,31): 3.875, 4, 4.125, 4.25, 4.375, 4.5, 4.625, 4.75, 4.875, 5,
|
||||
(0,41): 5.125, 5.25, 5.375, 5.5, 5.625, 5.75, 5.875, 6, 6.125, 6.25,
|
||||
(0,51): 6.375, 6.5, 6.625, 6.75, 6.875, 7, 7.125, 7.25, 7.375, 7.5,
|
||||
(0,61): 7.625, 7.75, 7.875,
|
||||
(1,0): 63, 0.140625, 0.265625, 0.390625, 0.515625, 0.640625, 0.765625,
|
||||
(1,7): 0.890625, 1.01563, 1.14063, 1.26563, 1.39063, 1.51563, 1.64063,
|
||||
(1,14): 1.76563, 1.89063, 2.01563, 2.14063, 2.26563, 2.39063, 2.51563,
|
||||
(1,21): 2.64063, 2.76563, 2.89063, 3.01563, 3.14063, 3.26563, 3.39063,
|
||||
(1,28): 3.51563, 3.64063, 3.76563, 3.89063, 4.01563, 4.14063, 4.26563,
|
||||
(1,35): 4.39063, 4.51563, 4.64063, 4.76563, 4.89063, 5.01563, 5.14063,
|
||||
(1,42): 5.26563, 5.39063, 5.51563, 5.64063, 5.76563, 5.89063, 6.01563,
|
||||
(1,49): 6.14063, 6.26563, 6.39063, 6.51563, 6.64063, 6.76563, 6.89063,
|
||||
(1,56): 7.01563, 7.14063, 7.26563, 7.39063, 7.51563, 7.64063, 7.76563,
|
||||
(1,63): 7.89063,
|
||||
(2,0): 62, 0.15625, 0.28125, 0.40625, 0.53125, 0.65625, 0.78125,
|
||||
(2,7): 0.90625, 1.03125, 1.15625, 1.28125, 1.40625, 1.53125, 1.65625,
|
||||
(2,14): 1.78125, 1.90625, 2.03125, 2.15625, 2.28125, 2.40625, 2.53125,
|
||||
(2,21): 2.65625, 2.78125, 2.90625, 3.03125, 3.15625, 3.28125, 3.40625,
|
||||
(2,28): 3.53125, 3.65625, 3.78125, 3.90625, 4.03125, 4.15625, 4.28125,
|
||||
(2,35): 4.40625, 4.53125, 4.65625, 4.78125, 4.90625, 5.03125, 5.15625,
|
||||
(2,42): 5.28125, 5.40625, 5.53125, 5.65625, 5.78125, 5.90625, 6.03125,
|
||||
(2,49): 6.15625, 6.28125, 6.40625, 6.53125, 6.65625, 6.78125, 6.90625,
|
||||
(2,56): 7.03125, 7.15625, 7.28125, 7.40625, 7.53125, 7.65625, 7.78125,
|
||||
(2,63): 7.90625,
|
||||
(3,0): 61, 0.171875, 0.296875, 0.421875, 0.546875, 0.671875, 0.796875,
|
||||
(3,7): 0.921875, 1.04688, 1.17188, 1.29688, 1.42188, 1.54688, 1.67188,
|
||||
(3,14): 1.79688, 1.92188, 2.04688, 2.17188, 2.29688, 2.42188, 2.54688,
|
||||
(3,21): 2.67188, 2.79688, 2.92188, 3.04688, 3.17188, 3.29688, 3.42188,
|
||||
(3,28): 3.54688, 3.67188, 3.79688, 3.92188, 4.04688, 4.17188, 4.29688,
|
||||
(3,35): 4.42188, 4.54688, 4.67188, 4.79688, 4.92188, 5.04688, 5.17188,
|
||||
(3,42): 5.29688, 5.42188, 5.54688, 5.67188, 5.79688, 5.92188, 6.04688,
|
||||
(3,49): 6.17188, 6.29688, 6.42188, 6.54688, 6.67188, 6.79688, 6.92188,
|
||||
(3,56): 7.04688, 7.17188, 7.29688, 7.42188, 7.54688, 7.67188, 7.79688,
|
||||
(3,63): 7.92188,
|
||||
(4,0): 60, 0.1875, 0.3125, 0.4375, 0.5625, 0.6875, 0.8125, 0.9375,
|
||||
(4,8): 1.0625, 1.1875, 1.3125, 1.4375, 1.5625, 1.6875, 1.8125, 1.9375,
|
||||
(4,16): 2.0625, 2.1875, 2.3125, 2.4375, 2.5625, 2.6875, 2.8125, 2.9375,
|
||||
(4,24): 3.0625, 3.1875, 3.3125, 3.4375, 3.5625, 3.6875, 3.8125, 3.9375,
|
||||
(4,32): 4.0625, 4.1875, 4.3125, 4.4375, 4.5625, 4.6875, 4.8125, 4.9375,
|
||||
(4,40): 5.0625, 5.1875, 5.3125, 5.4375, 5.5625, 5.6875, 5.8125, 5.9375,
|
||||
(4,48): 6.0625, 6.1875, 6.3125, 6.4375, 6.5625, 6.6875, 6.8125, 6.9375,
|
||||
(4,56): 7.0625, 7.1875, 7.3125, 7.4375, 7.5625, 7.6875, 7.8125, 7.9375,
|
||||
(5,0): 59, 0.203125, 0.328125, 0.453125, 0.578125, 0.703125, 0.828125,
|
||||
(5,7): 0.953125, 1.07813, 1.20313, 1.32813, 1.45313, 1.57813, 1.70313,
|
||||
(5,14): 1.82813, 1.95313, 2.07813, 2.20313, 2.32813, 2.45313, 2.57813,
|
||||
(5,21): 2.70313, 2.82813, 2.95313, 3.07813, 3.20313, 3.32813, 3.45313,
|
||||
(5,28): 3.57813, 3.70313, 3.82813, 3.95313, 4.07813, 4.20313, 4.32813,
|
||||
(5,35): 4.45313, 4.57813, 4.70313, 4.82813, 4.95313, 5.07813, 5.20313,
|
||||
(5,42): 5.32813, 5.45313, 5.57813, 5.70313, 5.82813, 5.95313, 6.07813,
|
||||
(5,49): 6.20313, 6.32813, 6.45313, 6.57813, 6.70313, 6.82813, 6.95313,
|
||||
(5,56): 7.07813, 7.20313, 7.32813, 7.45313, 7.57813, 7.70313, 7.82813,
|
||||
(5,63): 7.95313,
|
||||
(6,0): 58, 0.21875, 0.34375, 0.46875, 0.59375, 0.71875, 0.84375,
|
||||
(6,7): 0.96875, 1.09375, 1.21875, 1.34375, 1.46875, 1.59375, 1.71875,
|
||||
(6,14): 1.84375, 1.96875, 2.09375, 2.21875, 2.34375, 2.46875, 2.59375,
|
||||
(6,21): 2.71875, 2.84375, 2.96875, 3.09375, 3.21875, 3.34375, 3.46875,
|
||||
(6,28): 3.59375, 3.71875, 3.84375, 3.96875, 4.09375, 4.21875, 4.34375,
|
||||
(6,35): 4.46875, 4.59375, 4.71875, 4.84375, 4.96875, 5.09375, 5.21875,
|
||||
(6,42): 5.34375, 5.46875, 5.59375, 5.71875, 5.84375, 5.96875, 6.09375,
|
||||
(6,49): 6.21875, 6.34375, 6.46875, 6.59375, 6.71875, 6.84375, 6.96875,
|
||||
(6,56): 7.09375, 7.21875, 7.34375, 7.46875, 7.59375, 7.71875, 7.84375,
|
||||
(6,63): 7.96875,
|
||||
(7,0): 57, 0.234375, 0.359375, 0.484375, 0.609375, 0.734375, 0.859375,
|
||||
(7,7): 0.984375, 1.10938, 1.23438, 1.35938, 1.48438, 1.60938, 1.73438,
|
||||
(7,14): 1.85938, 1.98438, 2.10938, 2.23438, 2.35938, 2.48438, 2.60938,
|
||||
(7,21): 2.73438, 2.85938, 2.98438, 3.10938, 3.23438, 3.35938, 3.48438,
|
||||
(7,28): 3.60938, 3.73438, 3.85938, 3.98438, 4.10938, 4.23438, 4.35938,
|
||||
(7,35): 4.48438, 4.60938, 4.73438, 4.85938, 4.98438, 5.10938, 5.23438,
|
||||
(7,42): 5.35938, 5.48438, 5.60938, 5.73438, 5.85938, 5.98438, 6.10938,
|
||||
(7,49): 6.23438, 6.35938, 6.48438, 6.60938, 6.73438, 6.85938, 6.98438,
|
||||
(7,56): 7.10938, 7.23438, 7.35938, 7.48438, 7.60938, 7.73438, 7.85938,
|
||||
(7,63): 7.98438
|
||||
}
|
||||
ATTRIBUTE "DS64BITS" {
|
||||
DATATYPE H5T_IEEE_F64LE
|
||||
DATASPACE SIMPLE { ( 512 ) / ( 512 ) }
|
||||
DATA {
|
||||
(0): 64, 0.125, 0.25, 0.375, 0.5, 0.625, 0.75, 0.875, 1, 1.125,
|
||||
(10): 1.25, 1.375, 1.5, 1.625, 1.75, 1.875, 2, 2.125, 2.25, 2.375,
|
||||
(20): 2.5, 2.625, 2.75, 2.875, 3, 3.125, 3.25, 3.375, 3.5, 3.625,
|
||||
(30): 3.75, 3.875, 4, 4.125, 4.25, 4.375, 4.5, 4.625, 4.75, 4.875,
|
||||
(40): 5, 5.125, 5.25, 5.375, 5.5, 5.625, 5.75, 5.875, 6, 6.125,
|
||||
(50): 6.25, 6.375, 6.5, 6.625, 6.75, 6.875, 7, 7.125, 7.25, 7.375,
|
||||
(60): 7.5, 7.625, 7.75, 7.875, 63, 0.140625, 0.265625, 0.390625,
|
||||
(68): 0.515625, 0.640625, 0.765625, 0.890625, 1.01563, 1.14063,
|
||||
(74): 1.26563, 1.39063, 1.51563, 1.64063, 1.76563, 1.89063, 2.01563,
|
||||
(81): 2.14063, 2.26563, 2.39063, 2.51563, 2.64063, 2.76563, 2.89063,
|
||||
(88): 3.01563, 3.14063, 3.26563, 3.39063, 3.51563, 3.64063, 3.76563,
|
||||
(95): 3.89063, 4.01563, 4.14063, 4.26563, 4.39063, 4.51563, 4.64063,
|
||||
(102): 4.76563, 4.89063, 5.01563, 5.14063, 5.26563, 5.39063,
|
||||
(108): 5.51563, 5.64063, 5.76563, 5.89063, 6.01563, 6.14063,
|
||||
(114): 6.26563, 6.39063, 6.51563, 6.64063, 6.76563, 6.89063,
|
||||
(120): 7.01563, 7.14063, 7.26563, 7.39063, 7.51563, 7.64063,
|
||||
(126): 7.76563, 7.89063, 62, 0.15625, 0.28125, 0.40625, 0.53125,
|
||||
(133): 0.65625, 0.78125, 0.90625, 1.03125, 1.15625, 1.28125,
|
||||
(139): 1.40625, 1.53125, 1.65625, 1.78125, 1.90625, 2.03125,
|
||||
(145): 2.15625, 2.28125, 2.40625, 2.53125, 2.65625, 2.78125,
|
||||
(151): 2.90625, 3.03125, 3.15625, 3.28125, 3.40625, 3.53125,
|
||||
(157): 3.65625, 3.78125, 3.90625, 4.03125, 4.15625, 4.28125,
|
||||
(163): 4.40625, 4.53125, 4.65625, 4.78125, 4.90625, 5.03125,
|
||||
(169): 5.15625, 5.28125, 5.40625, 5.53125, 5.65625, 5.78125,
|
||||
(175): 5.90625, 6.03125, 6.15625, 6.28125, 6.40625, 6.53125,
|
||||
(181): 6.65625, 6.78125, 6.90625, 7.03125, 7.15625, 7.28125,
|
||||
(187): 7.40625, 7.53125, 7.65625, 7.78125, 7.90625, 61, 0.171875,
|
||||
(194): 0.296875, 0.421875, 0.546875, 0.671875, 0.796875, 0.921875,
|
||||
(200): 1.04688, 1.17188, 1.29688, 1.42188, 1.54688, 1.67188,
|
||||
(206): 1.79688, 1.92188, 2.04688, 2.17188, 2.29688, 2.42188,
|
||||
(212): 2.54688, 2.67188, 2.79688, 2.92188, 3.04688, 3.17188,
|
||||
(218): 3.29688, 3.42188, 3.54688, 3.67188, 3.79688, 3.92188,
|
||||
(224): 4.04688, 4.17188, 4.29688, 4.42188, 4.54688, 4.67188,
|
||||
(230): 4.79688, 4.92188, 5.04688, 5.17188, 5.29688, 5.42188,
|
||||
(236): 5.54688, 5.67188, 5.79688, 5.92188, 6.04688, 6.17188,
|
||||
(242): 6.29688, 6.42188, 6.54688, 6.67188, 6.79688, 6.92188,
|
||||
(248): 7.04688, 7.17188, 7.29688, 7.42188, 7.54688, 7.67188,
|
||||
(254): 7.79688, 7.92188, 60, 0.1875, 0.3125, 0.4375, 0.5625, 0.6875,
|
||||
(262): 0.8125, 0.9375, 1.0625, 1.1875, 1.3125, 1.4375, 1.5625,
|
||||
(269): 1.6875, 1.8125, 1.9375, 2.0625, 2.1875, 2.3125, 2.4375,
|
||||
(276): 2.5625, 2.6875, 2.8125, 2.9375, 3.0625, 3.1875, 3.3125,
|
||||
(283): 3.4375, 3.5625, 3.6875, 3.8125, 3.9375, 4.0625, 4.1875,
|
||||
(290): 4.3125, 4.4375, 4.5625, 4.6875, 4.8125, 4.9375, 5.0625,
|
||||
(297): 5.1875, 5.3125, 5.4375, 5.5625, 5.6875, 5.8125, 5.9375,
|
||||
(304): 6.0625, 6.1875, 6.3125, 6.4375, 6.5625, 6.6875, 6.8125,
|
||||
(311): 6.9375, 7.0625, 7.1875, 7.3125, 7.4375, 7.5625, 7.6875,
|
||||
(318): 7.8125, 7.9375, 59, 0.203125, 0.328125, 0.453125, 0.578125,
|
||||
(325): 0.703125, 0.828125, 0.953125, 1.07813, 1.20313, 1.32813,
|
||||
(331): 1.45313, 1.57813, 1.70313, 1.82813, 1.95313, 2.07813,
|
||||
(337): 2.20313, 2.32813, 2.45313, 2.57813, 2.70313, 2.82813,
|
||||
(343): 2.95313, 3.07813, 3.20313, 3.32813, 3.45313, 3.57813,
|
||||
(349): 3.70313, 3.82813, 3.95313, 4.07813, 4.20313, 4.32813,
|
||||
(355): 4.45313, 4.57813, 4.70313, 4.82813, 4.95313, 5.07813,
|
||||
(361): 5.20313, 5.32813, 5.45313, 5.57813, 5.70313, 5.82813,
|
||||
(367): 5.95313, 6.07813, 6.20313, 6.32813, 6.45313, 6.57813,
|
||||
(373): 6.70313, 6.82813, 6.95313, 7.07813, 7.20313, 7.32813,
|
||||
(379): 7.45313, 7.57813, 7.70313, 7.82813, 7.95313, 58, 0.21875,
|
||||
(386): 0.34375, 0.46875, 0.59375, 0.71875, 0.84375, 0.96875,
|
||||
(392): 1.09375, 1.21875, 1.34375, 1.46875, 1.59375, 1.71875,
|
||||
(398): 1.84375, 1.96875, 2.09375, 2.21875, 2.34375, 2.46875,
|
||||
(404): 2.59375, 2.71875, 2.84375, 2.96875, 3.09375, 3.21875,
|
||||
(410): 3.34375, 3.46875, 3.59375, 3.71875, 3.84375, 3.96875,
|
||||
(416): 4.09375, 4.21875, 4.34375, 4.46875, 4.59375, 4.71875,
|
||||
(422): 4.84375, 4.96875, 5.09375, 5.21875, 5.34375, 5.46875,
|
||||
(428): 5.59375, 5.71875, 5.84375, 5.96875, 6.09375, 6.21875,
|
||||
(434): 6.34375, 6.46875, 6.59375, 6.71875, 6.84375, 6.96875,
|
||||
(440): 7.09375, 7.21875, 7.34375, 7.46875, 7.59375, 7.71875,
|
||||
(446): 7.84375, 7.96875, 57, 0.234375, 0.359375, 0.484375, 0.609375,
|
||||
(453): 0.734375, 0.859375, 0.984375, 1.10938, 1.23438, 1.35938,
|
||||
(459): 1.48438, 1.60938, 1.73438, 1.85938, 1.98438, 2.10938,
|
||||
(465): 2.23438, 2.35938, 2.48438, 2.60938, 2.73438, 2.85938,
|
||||
(471): 2.98438, 3.10938, 3.23438, 3.35938, 3.48438, 3.60938,
|
||||
(477): 3.73438, 3.85938, 3.98438, 4.10938, 4.23438, 4.35938,
|
||||
(483): 4.48438, 4.60938, 4.73438, 4.85938, 4.98438, 5.10938,
|
||||
(489): 5.23438, 5.35938, 5.48438, 5.60938, 5.73438, 5.85938,
|
||||
(495): 5.98438, 6.10938, 6.23438, 6.35938, 6.48438, 6.60938,
|
||||
(501): 6.73438, 6.85938, 6.98438, 7.10938, 7.23438, 7.35938,
|
||||
(507): 7.48438, 7.60938, 7.73438, 7.85938, 7.98438
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1357,7 +1357,7 @@ TOOLTEST tgrpnullspace.ddl -p --enable-error-stack tgrpnullspace.h5
|
||||
TOOLTEST zerodim.ddl --enable-error-stack zerodim.h5
|
||||
|
||||
# test for long double (some systems do not have long double)
|
||||
TOOLTEST tfloatsattrs.ddl -p --enable-error-stack tfloatsattrs.h5
|
||||
TOOLTEST tfloatsattrs.ddl -p --format=%.4g --lformat=%.4Lg --width=80 --enable-error-stack tfloatsattrs.h5
|
||||
TOOLTEST tldouble.ddl --enable-error-stack tldouble.h5
|
||||
TOOLTEST tldouble_scalar.ddl -p --enable-error-stack tldouble_scalar.h5
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user