wolffd@0: %ZIPSAVE Save data in compressed format wolffd@0: % wolffd@0: % zipsave( filename, data ) wolffd@0: % filename: string variable that contains the name of the resulting wolffd@0: % compressed file (do not include '.zip' extension) wolffd@0: % pkzip25.exe has to be in the matlab path. This file is a compression utility wolffd@0: % made by Pkware, Inc. It can be dowloaded from: http://www.pkware.com wolffd@0: % This function was tested using 'PKZIP 2.50 Command Line for Windows 9x/NT' wolffd@0: % It is important to use version 2.5 of the utility. Otherwise the command line below wolffd@0: % has to be changed to include the proper options of the compression utility you wolffd@0: % wish to use. wolffd@0: % This function was tested in MATLAB Version 5.3 under Windows NT. wolffd@0: % Fernando A. Brucher - May/25/1999 wolffd@0: % wolffd@0: % Example: wolffd@0: % testData = [1 2 3; 4 5 6; 7 8 9]; wolffd@0: % zipsave('testfile', testData); wolffd@0: % wolffd@0: % Modified by Kevin Murphy, 26 Feb 2004, to use winzip wolffd@0: %------------------------------------------------------------------------ wolffd@0: wolffd@0: function zipsave( filename, data ) wolffd@0: wolffd@0: %--- Save data in a temporary file in matlab format (.mat)--- wolffd@0: wolffd@0: eval( ['save ''', filename, ''' data'] ) wolffd@0: wolffd@0: wolffd@0: %--- Compress data by calling pkzip (comand line command) --- wolffd@0: % Options used: wolffd@0: % 'add' = add compressed files to the resulting zip file wolffd@0: % 'silent' = no console output wolffd@0: % 'over=all' = overwrite files wolffd@0: wolffd@0: %eval( ['!pkzip25 -silent -add -over=all ', filename, '.zip ', filename,'.mat'] ) wolffd@0: eval( ['!zip ', filename, '.zip ', filename,'.mat'] ) wolffd@0: wolffd@0: %--- Delete temporary matlab format file --- wolffd@0: wolffd@0: delete( [filename,'.mat'] ) wolffd@0: wolffd@0: