subroutine h5tbwrite_field_index_f(loc_id, dset_name, field_index, start, &
nrecords, type_size, buf, errcode)
implicit none
integer(HID_T), intent(IN) :: loc_id ! file or group identifier
character(LEN=*), intent(IN) :: dset_name ! name of the dataset
integer, intent(IN) :: field_index ! index
integer(HSIZE_T), intent(IN) :: start ! start record
integer(HSIZE_T), intent(IN) :: nrecords ! records
integer(SIZE_T), intent(IN) :: type_size ! type size
, intent(IN), dimension(*) :: buf ! data buffer
integer :: errcode ! error code
end subroutine h5tbwrite_field_index_f
Parameters:
hid_tloc_id
IN: Identifier of the file or group where the table is located
const char *table_name
IN: The name of the dataset to overwrite
intnfields
IN: The number of fields to overwrite. This parameter is also the size of the field_index array.
const int *field_index
IN: The indexes of the fields to write
hsize_tstart
IN: The zero based index record to start writing
hsize_tnrecords
IN: The number of records to write
size_ttype_size
IN: The size of the structure type, as calculated by sizeof()
const size_t *field_offset
IN: An array containing the offsets of the fields. These offsets can be calculated with the HOFFSET macro.
const size_t *field_sizes
IN: An array containing the sizes of the fields
void *data
IN: Buffer with data
Description:
H5TB_WRITE_FIELDS_INDEX overwrites one or several fields specified by field_index with a buffer data from a dataset named table_name attached to the object specified by the identifier loc_id.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
Include Bitbucket Server for Confluence: File content cannot be shown
Unauthenticated access to this resource is not allowed. Please login to Confluence first.