Read multiple .mat files in the file path in sequence

Hi everyone,
There are 10 .mat files in the file path. I need to read the value of one matrix (called 'Scanning') in this file and keep it in another.
For instance ,
0_cm(1).mat , 0_cm(2).mat .... 0_cm(10).mat
I get the error when I write the following matlab code and filename is a string type, so I can't access files with the variable i.
Test = [];
for i=1:10
filename = "D:\matlab\0_cm(i).mat";
myVars = {'Scanning'};
S = load(filename,myVars{:});
Test = S.Scanning(:,64)
end
Thanks for your answer in advance.

답변 (2개)

dpb
dpb 2019년 8월 30일
for i=1:10
filename = sprintf('D:\matlab\0_cm(%d).mat',i); % build specific file name
myVars = {'Scanning'};
S = load(filename,myVars{:});
Test = S.Scanning(:,64)
end

댓글 수: 3

Stephen23
Stephen23 2019년 8월 30일
편집: Stephen23 2019년 8월 30일
@dpb: this will throw an error (due to the invalid \m formatting operator):
sprintf('D:\matlab\0_cm(%d).mat',i)
For example:
>> sprintf('D:\matlab\0_cm(%d).mat',4)
Warning: Escape sequence 'm' is not valid. See 'help sprintf' for valid escape sequences.
Also: most likely you did not intend to create a null character (although that is what you did with the formatting operator \0).
You could:
  • escape the backslashes
  • use forward slashes
  • include the path as a separate input
  • join the path afterwards using fullfile.
You could also use string with the + operator.
n = 9;
filename = "D:\matlab\0_cm(" + n + ").mat";
You could use this with fullfile if you wanted.
n = 9;
FN = "0_cm(" + n + ").mat";
filename = fullfile('D:\', 'matlab', FN)
@dpb, yes an error is emerging as @Stephen Cobeldick mentions.
Warning: Escaped character '\m' is not valid. See 'doc sprintf' for supported special characters.
Thanks @Stephen Cobeldick,

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

mehmet irfan gedik
mehmet irfan gedik 2019년 8월 30일
편집: mehmet irfan gedik 2019년 8월 30일

0 개 추천

Thanks @Steven Lord ,
We could actually solve the problem with a fairly simple method.
Edit : But I wonder why the sprintf function is causing such a problem ???.

댓글 수: 2

The reason there is a problem is that when compiling sprintf into a string, the function uses the '\' as an escape character as stephen mentioned. What this means is the text interpreter will look at the next charactes expecting not text but some indicator for something else.
For example, if you want a tab in your string you can do '\t', or '\n' for a newline. Since the '\' is being used like that matlab puts in a way to keep it. typeing '\\' results in a single backslash in the string. So the code can be fixed using stephen's "escape the backslash" method as such
filename = sprintf('D:\\matlab\\0_cm(%d).mat',i);
@David K. , Thank you for your descriptive sentences.

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

카테고리

제품

질문:

2019년 8월 30일

댓글:

2019년 8월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by