savezip

버전 1.0.0.0 (3.53 KB) 작성자: Yair Altman
save/load data in a compressed zip file
다운로드 수: 734
업데이트 날짜: 2014/8/29

라이선스 보기

savezip accepts a file name/path and variable data or name, and stores the data in compressed zip or gzip format in the specified file. If the specified filepath does not include an extension, then '.zip' will be used. The data can be in any Matlab data format.

The data can later be loaded back into Matlab using the corresponding loadzip function, which is included in this submission.

The main benefit: saving and loading data can be faster than Matlab's builtin save and load functions in some cases.

Syntax:
savezip(filepath, data)
savezip(filepath, 'variableName')
data = loadzip(filepath)

Examples:
savezip('myData', magic(4)) %save data to myData.zip in current folder
savezip('myData', 'myVar') %save myVar to myData.zip in current folder
savezip('myData.gz', 'myVar') %save data to myData.gz in current folder
savezip('data\myData', magic(4)) %save data to .\data\myData.zip
savezip('data\myData.gz', magic(4)) %save data to .\data\myData.gz

myData = loadzip('myData');
myData = loadzip('myData.zip');
myData = loadzip('data\myData');
myData = loadzip('data\myData.gz');

Technical description:
http://UndocumentedMatlab.com/blog/savezip-utility

Note:
This utility relies on the undocumented and unsupported serialization functionality, as described in http://undocumentedmatlab.com/blog/serializing-deserializing-matlab-data . It works on all the recent Matlab releases, but might stop working in any future Matlab release without prior notice. Use at your own risk!

Bugs and suggestions:
Please send to Yair Altman (altmany at gmail dot com)

인용 양식

Yair Altman (2024). savezip (https://www.mathworks.com/matlabcentral/fileexchange/47698-savezip), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0