H5.Float32val write_float_array : H5.t -> string -> ?deflate:int -> float array -> unitWrites the given float array to the data set.
val read_float_array : H5.t -> ?data:float array -> string -> float arrayReads the data set into a float array.
val write_float_genarray :
H5.t ->
string ->
?deflate:int ->
(float, Bigarray.float32_elt, _) Bigarray.Genarray.t ->
unitval read_float_genarray :
H5.t ->
?data:(float, Bigarray.float32_elt, 'a) Bigarray.Genarray.t ->
string ->
'a Bigarray.layout ->
(float, Bigarray.float32_elt, 'a) Bigarray.Genarray.tReads the data set into a float Genarray.t.
val write_float_array1 :
H5.t ->
string ->
?deflate:int ->
(float, Bigarray.float32_elt, _) Bigarray.Array1.t ->
unitWrites the given float Array1.t to the data set.
val read_float_array1 :
H5.t ->
?data:(float, Bigarray.float32_elt, 'a) Bigarray.Array1.t ->
string ->
'a Bigarray.layout ->
(float, Bigarray.float32_elt, 'a) Bigarray.Array1.tReads the data set into a float Array1.t.
val write_float_array2 :
H5.t ->
string ->
?deflate:int ->
(float, Bigarray.float32_elt, _) Bigarray.Array2.t ->
unitWrites the given float Array1.t to the data set.
val read_float_array2 :
H5.t ->
?data:(float, Bigarray.float32_elt, 'a) Bigarray.Array2.t ->
string ->
'a Bigarray.layout ->
(float, Bigarray.float32_elt, 'a) Bigarray.Array2.tReads the data set into a float Array2.t.
val write_float_array3 :
H5.t ->
string ->
?deflate:int ->
(float, Bigarray.float32_elt, _) Bigarray.Array3.t ->
unitWrites the given float Array1.t to the data set.
val read_float_array3 :
H5.t ->
?data:(float, Bigarray.float32_elt, 'a) Bigarray.Array3.t ->
string ->
'a Bigarray.layout ->
(float, Bigarray.float32_elt, 'a) Bigarray.Array3.tReads the data set into a float Array3.t.
val write_attribute_float : H5.t -> string -> float -> unitwrite_attribute_float t name v writes the given float as an attribute with the given name.
val read_attribute_float : H5.t -> string -> floatread_attribute_float t name reads the attribute with the given name as a float.
val write_attribute_float_array : H5.t -> string -> float array -> unitWrites the given float as an attribute with the given name.
val read_attribute_float_array : H5.t -> string -> float arrayReads the attribute with the given name as a float.