Gets B-tree split ratios for a dataset transfer property list
Procedure:
H5P_GET_BTREE_RATIOS ( plist, left, middle, right )
Signature:
herr_t H5Pget_btree_ratios(hid_t plist,
double *left,
double *middle,
double *right
)
Replace this text with the Fortran function signature
Parameters:
hid_t plist | IN: The dataset transfer property list identifier |
double left | OUT: The B-tree split ratio for left-most nodes |
double right | OUT: The B-tree split ratio for right-most nodes and lone nodes |
double middle | OUT: The B-tree split ratio for all other nodes |
Description:
H5P_GET_BTREE_RATIOS returns the B-tree split ratios for a dataset transfer property list.
The B-tree split ratios are returned through the non-NULL
arguments left
, middle
, and right
, as set by the H5P_SET_BTREE_RATIOS function.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
History:
--- Last Modified: August 09, 2019 | 11:40 AM