Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Source file float_intf.ml
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667openBigarraymoduletypeS=sigtypettypefloat_elt(** Writes the given float array to the data set. *)valwrite_float_array:t->string->?deflate:int->floatarray->unit(** Reads the data set into a float array.
@param data If provided, the storage for the data. *)valread_float_array:t->?data:floatarray->string->floatarrayvalwrite_float_genarray:t->string->?deflate:int->(float,float_elt,_)Genarray.t->unit(** Reads the data set into a float Genarray.t.
@param data If provided, the storage for the data. *)valread_float_genarray:t->?data:(float,float_elt,'a)Genarray.t->string->'alayout->(float,float_elt,'a)Genarray.t(** Writes the given float Array1.t to the data set. *)valwrite_float_array1:t->string->?deflate:int->(float,float_elt,_)Array1.t->unit(** Reads the data set into a float Array1.t.
@param data If provided, the storage for the data. *)valread_float_array1:t->?data:(float,float_elt,'a)Array1.t->string->'alayout->(float,float_elt,'a)Array1.t(** Writes the given float Array1.t to the data set. *)valwrite_float_array2:t->string->?deflate:int->(float,float_elt,_)Array2.t->unit(** Reads the data set into a float Array2.t.
@param data If provided, the storage for the data. *)valread_float_array2:t->?data:(float,float_elt,'a)Array2.t->string->'alayout->(float,float_elt,'a)Array2.t(** Writes the given float Array1.t to the data set. *)valwrite_float_array3:t->string->?deflate:int->(float,float_elt,_)Array3.t->unit(** Reads the data set into a float Array3.t.
@param data If provided, the storage for the data. *)valread_float_array3:t->?data:(float,float_elt,'a)Array3.t->string->'alayout->(float,float_elt,'a)Array3.t(** [write_attribute_float t name v] writes the given [float] as an attribute with the
given name. *)valwrite_attribute_float:t->string->float->unit(** [read_attribute_float t name] reads the attribute with the given name as a float. *)valread_attribute_float:t->string->float(** Writes the given [float] as an attribute with the given name. *)valwrite_attribute_float_array:t->string->floatarray->unit(** Reads the attribute with the given name as a float. *)valread_attribute_float_array:t->string->floatarrayend