I am creating a program that requires the manipulation of several files of a similar title (Appfolder/mat*x*)
where x represents a number between 1 and 10. (so the files i am working with are called mat1, mat2, mat3, mat4,..etc)
I want to know if there is a way I can call upon these files with a variable so I can use a for loop to repeat a similar procedure on them
whenever i try just calling upon matx it just thinks I mean a file called matx not mat1 or mat2 or whatever x equals?
Example
For i,1,10,1
For x,1,3,1
For y,1,3,1
Define Appfolder/mat*i*[x,y]=…etc.
EndFor
EndFor
EndFor
*Edit* matx is not a program. It is a matrix variable I need to edit within the context of a program