append non-compression data to matfile problem

4 ビュー (過去 30 日間)
Yu Li
Yu Li 2018 年 9 月 26 日
回答済み: Bish Erbas 2018 年 9 月 26 日
I want to append a variable to a existed .mat file, but Matlab occurs error:
Nocompression not supported for this MAT-file version. Use MAT-file v7.3 instead.
below is the test code:
test=1;
save test test
T=rand(1e6,1);
save('test.mat','T','-append','-nocompression')
is there any mistake with my operation?
Thanks!
Yu

採用された回答

Bish Erbas
Bish Erbas 2018 年 9 月 26 日
Try this:
test=1;
save('test','test','-v7.3');
T=rand(1e6,1);
save('test.mat','T','-append','-nocompression')
-nocompression is only supported for MAT-files created in v7.3

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOutputs についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by