필터 지우기
필터 지우기

append non-compression data to matfile problem

조회 수: 3 (최근 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 CenterFile Exchange에서 Outputs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by