diff --git a/docs.html b/docs.html index 4e7570c9..824a8b1a 100644 --- a/docs.html +++ b/docs.html @@ -7105,6 +7105,18 @@ to explicitly control the dataset name, specify it via the hdf5_name() ar
  • +Caveat: +for saving / loading HDF5 files, support for HDF5 must be enabled within Armadillo's configuration; +the hdf5.h header file must be available on your system and you will need to link with the HDF5 library (eg. -lhdf5). +HDF5 support can be enabled by defining ARMA_USE_HDF5 before including the armadillo header: +
    + +#define ARMA_USE_HDF5 +
    #include <armadillo> +
    +
  • +
    +
  • By providing either hdf5_name(filename, dataset) or hdf5_name(filename, dataset, settings), the file_type type is assumed to be hdf5_binary

    @@ -7130,12 +7142,6 @@ the above settings can be combined using the + operator; for exampl

  • -Caveat: -for saving / loading HDF5 files, support for HDF5 must be enabled within Armadillo's configuration; -the hdf5.h header file must be available on your system and you will need to link with the HDF5 library (eg. -lhdf5) -
  • -
    -
  • By providing either csv_name(filename, header) or csv_name(filename, header, settings), the file is assumed to have data in comma separated value (CSV) text format