How to import data for multiple files in "for" loop?

Hi, I would like to import data from multiple files using "for" loop. The files follow the seuquene of Data11, Data12, Data13, etc. I tried using the following command, but it is showing an error:
c = [1 2 3 4 5 6 7 8 9 10];
s = [1 2 3 4 5 6 7 8 9 10];
for i=1:10;
for j=1:10;
b=importdata('Data(c(i)s(j)).out');
a=importdata('Data(c(i)s(j)).out');
x= a(:,2);
y= -sum(b(:,2:11),2);
end
end
Can anyone please help me in fixing it, or let me know about the correct code.
Thank you. Regards, Ismail

댓글 수: 4

Ismail Qeshta
Ismail Qeshta 2017년 11월 10일
편집: Ismail Qeshta 2017년 11월 10일
Hi Stephen,
Thanks for your answer and links. The problem is that my files names are in the sequence of 11, 12, 13, etc. Does that apply to the normal sequentially numbered files as explained in the example?
Thank you very much Stephen

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Import and Export에 대해 자세히 알아보기

질문:

2017년 11월 10일

댓글:

2017년 11월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by