How to loop string files in the IBWread function.

1 次查看(过去 30 天)
I am using IBWread function to convert igor file to matlap workspace. I would like to know how can i loop the script from 1 to 5 for ii and 2to 6 for jj. I use the following code.
for ii=1:5
forjj=2:6
Data = IBWread('%d.ibw',ii);% i want IBWread('1.ibw')
Data1 = IBWread('%d.ibw',jj);
end
end
I want to run IBWread('1.ibw') in my first iteration to IBWread('5.ibw') to my last iteration. But my code shows error. Kindly help.

采纳的回答

Walter Roberson
Walter Roberson 2015-6-26
for ii=1:5
for jj=2:6
Data = IBWread(sprintf('%d.ibw',ii));% i want IBWread('1.ibw')
Data1 = IBWread(sprintf('%d.ibw',jj));
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by