Problem saving a file

조회 수: 6 (최근 30일)
Shani Gal
Shani Gal 2012년 9월 21일
I
I tried saving a file, got this error message
{Warning: Variable 'Res' cannot be saved to a MAT-file whose version is older than 7.3. To save this variable, use the -v7.3 switch. Skipping...}
( by using save function: save('a.mat','Res','-mat')
What does it mean?
Thanks,
Shani
  댓글 수: 1
Roberto Herrera
Roberto Herrera 2012년 10월 24일
Hi Shani, I am dealing with the same problem saving a large 4-D matrix (>10GB) using -v7.3. It takes ages saving due to the compression in HDF. Reading is not a problem. You can map your file as a mat object (matObj), just read the "matfile" help, it works amazingly fast. Henry

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2012년 9월 21일
It means that the variable is either more than 2 gigabytes, or contains a type of object that is not supported in older .mat files.
You should switch to
save('a.mat', 'Res', '-mat', '-v7.3');
  댓글 수: 3
Walter Roberson
Walter Roberson 2012년 9월 21일
In some cases, fwrite() and then fread() can be faster.
Shani Gal
Shani Gal 2012년 9월 21일
Hi again,
My problem is that I have a lot of large files. Each file has a matrix with 4 columns and unknown number of rows. I need to search the 4th column of this matrix for a specific value and to retrieve the entire row the search finds.
I do the following:
a=load(a1.mat);
J=a(:,4)==Value
Out=a(J,:)
And it takes a lot of time to go over all the files. Have any idea how to speed it up?
Shani

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by