diff --git a/README.md b/README.md index 3c442a4..0d7e9d7 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,8 @@ **Create new MAT-files optimized for partial reading and writing of large arrays.** -See the demo at: http://www.allnans.com/newmatic/newmatic_demo.html ++ Demo at: http://www.allnans.com/newmatic/newmatic_demo.html ++ Blog at: http://www.allnans.com/jekyll/update/2020/02/23/newmatic.html This tool solves a few problems I ran into when using [matfile](https://www.mathworks.com/help/matlab/ref/matlab.io.matfile.html), @@ -32,10 +33,6 @@ Additional notes: + `newmatic` only allocates arrays. If you want to include other data types (strings, cell arrays, whatever), you can add them to the file created by `newmatic` in the usual way. -+ This initial version of `newmatic` depends on the system CLI - [h5repack](https://support.hdfgroup.org/HDF5/doc/RM/Tools.html#Tools-Repack), - a future update will drop this dependency in favor of the native MATLAB hdf5 - interface. ## Example Usage @@ -56,3 +53,8 @@ mat = newmatic(... mat.z = {'a', 'cell', 'array'}; ``` + +## References + +Special shout out to the [hdf5storage](https://github.com/frejanordsiek/hdf5storage) python package for +helping me work out the details of making a MATLAB-compatible HDF5 file.