How to save a Matlab 7.3 file?
Brought to you by:
chulbe2lsu,
t-beu
The documentation states that matio can handle Matlab 7.3 files
http://ftp.jaist.ac.jp/pub/sourceforge/m/project/ma/matio/matio/1.5.0/matio_user_guide.pdf page 11
But matio.h only proposes two compression modes: MAT_COMPRESSION_NONE and MAT_COMPRESSION_ZLIB. This restrains Mat_VarWrite() to those two modes, whereas Matlab states that 7.3 has a new compressed format, based on HDF5.
Source: http://www.mathworks.fr/fr/help/matlab/import_export/mat-file-versions.html
In Scilab, save() being directly linked to Mat_VarWrite(), I currently don't see how to save a Matlab 7.3 file.
Scilab related bug: http://bugzilla.scilab.org/show_bug.cgi?id=13143
Thank you for your time,
Paul
Sorry, wrong link for the Scilab bug. Here is the right one:
http://bugzilla.scilab.org/show_bug.cgi?id=13102
v7.3 files are not a compression format, but a different file format. You can create v7.3 files by setting the appropriate version (MAT_FT_MAT73) when calling Mat_CreateVer.