Here is the HDF5 code I am using:

hid_t cf = H5Fcreate( "Test1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); 
hid_t ptc = H5PTcreate_fl( cf, "pt1", H5T_NATIVE_INT, 4096, -1);

int x = 2;

for (int a = 0; a < 9999999; ++a)
{
        H5PTappend( ptc, 1, &x);
}


Is this appropriate usage?
-- 
View this message in context: 
http://hdf-forum.184993.n3.nabble.com/HDF5-Packet-Table-API-C-tp1175848p1266814.html
Sent from the hdf-forum mailing list archive at Nabble.com.

_______________________________________________
Hdf-forum is for HDF software users discussion.
[email protected]
http://mail.hdfgroup.org/mailman/listinfo/hdf-forum_hdfgroup.org

Reply via email to