Hi all!
I have this kind of a problem. I need to load 33 files such as A0.txt, A1.txt, A2.txt...A32.txt. Of course, i can do this by simply typing:
load A0.txt
load A1.txt
.
.
.
load A32.txt
But when i would like to load 100 files this solution isn't a good idea. I think for loop would be perfect, but i don't know how to merge variable with .txt extention :/ I tried this:
for i=0:1:32
load 'A' & i & '.txt'
end
or
for i=0:1:32
load 'A' + i + '.txt'
end
but this doesn't work
If anybody can help me, please answer or give a clue. Thnx!
I have this kind of a problem. I need to load 33 files such as A0.txt, A1.txt, A2.txt...A32.txt. Of course, i can do this by simply typing:
load A0.txt
load A1.txt
.
.
.
load A32.txt
But when i would like to load 100 files this solution isn't a good idea. I think for loop would be perfect, but i don't know how to merge variable with .txt extention :/ I tried this:
for i=0:1:32
load 'A' & i & '.txt'
end
or
for i=0:1:32
load 'A' + i + '.txt'
end
but this doesn't work

If anybody can help me, please answer or give a clue. Thnx!