MATLAB: How to change a part of a string particularly part of a folder and a file address

loopMATLABmodify stringstring

I want to change a part of a address in a loop…what is the simplest way for doing it?!
fileDImax=fopen('1\1\data\ParkAngDImax11.txt','w+');
fileDImax=fopen('1\1\data\ParkAngDImax21.txt','w+');
.
.
.
fileDImax=fopen('1\2\data\ParkAngDImax11.txt','w+');
fileDImax=fopen('1\2\data\ParkAngDImax21.txt','w+');
.
.
.
fileDImax=fopen('2\1\data\ParkAngDImax11.txt','w+');
fileDImax=fopen('2\1\data\ParkAngDImax21.txt','w+');
.
.
.

Best Answer

Please read the FAQ for several code examples: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F. It will tell you what you need to know to do this.