dear all,
I have some data with name ZA000060.TXT, ZA000120.TXT, ZA000180.TXT ..... at the same time I load data with :
for k=60:60:300
aa = sprintf('%d',k);
load (['ZA0000' aa '.TXT'],'AAA')
end
but there is error when load second data because the zero number.
unable to read file "ZA0000120.TXT"
Any help would be great,
Best regard,

댓글 수: 5

Stephen23
Stephen23 2016년 4월 13일
편집: Stephen23 2016년 4월 15일
@gugum gumbira : Why do you think that " error when load second data because the zero number" ?
You don't give us the complete error message, and there is no reason why a zero digit in a filename would cause any error. Please show us the complete error message.
Also note that it would be much better to load the data into one cell array:
V = 60:60:300;
C = cell(size(V));
for k = 1:numel(V)
filename = sprintf('ZA000%03d.TXT', V(k));
C{k} = load(filename);
end
Do NOT load the variables individually, this will make your code much more complicated.
Edit: simplify example code.
gugum gumbira
gugum gumbira 2016년 4월 13일
Thanks for quick reply :) with this syntax for k=60:60:300 aa = sprintf('%d',k); load (['ZA0000' aa '.TXT'],'AAA') end
I got this error
Error using load Unable to read file ZA0000120.TXT: Tidak ada berkas atau direktori seperti itu. the right load is "ZA000120.TXT" not "ZA0000120.TXT"
and using your syntax I got this error
"Assignment between unlike types is not allowed." thanks for your help before :)
Stephen23
Stephen23 2016년 4월 14일
편집: Stephen23 2016년 4월 14일
@gugum gumbira: I corrected and tested my example.
gugum gumbira
gugum gumbira 2016년 4월 15일
I got some errors with your syntax. would you please give full explanation about load the data into one variable
thanks
Stephen23
Stephen23 2016년 4월 15일
편집: Stephen23 2016년 4월 15일
You didn't replace the ellipses with the filename. Specify the filename and it will work.

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

 채택된 답변

Walter Roberson
Walter Roberson 2016년 4월 13일

0 개 추천

for k=60:60:300
filename = sprintf('ZA000%03d.TXT', k);
ZA{K} = load(filename);
end

댓글 수: 3

gugum gumbira
gugum gumbira 2016년 4월 13일
I got nothing with this script :( I hope the data would be load for each .TXT data
Thanks
Guillaume
Guillaume 2016년 4월 13일
To elaborate on Walter's answer. We suspect the problem is that you need a variable number of 0s before the actual number, depending on the actual number of digits.
This is what the '%03d' does in the formatstring of sprintf. It says prints the number as decimal (the d) with at least 3 digits (the 3) padded by zeros if necessary (the 0).
gugum gumbira
gugum gumbira 2016년 4월 14일
Thanks alot :)

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

질문:

2016년 4월 13일

편집:

2016년 4월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by