Change the name of the output file as a loop computes
8 次查看(过去 30 天)
显示 更早的评论
Hello all,
What i want to do is create a stack of files... i have a function F(x,y,z) and it is set to run and calculate F at different z values something like:
for zloop=1:pixel_dimension;
z=zloop;
calculate the function based on x y and the changing z value F(x,y,z)
PSF=(abs(F)).^2;
% save images
imwrite(PSF, 'C:\Documents and Settings\User\My Documents\MATLAB\Deconvolution\Brenden\Deconvolution\Point Spread Function\PSF stack\ NAME .bmp', 'bmp');
end
What i want to know is how to change the name of the output file with each iteration so i dont "write over" the same file each time.
0 个评论
采纳的回答
Paulo Silva
2011-7-14
for zloop=1:pixel_dimension;
z=zloop;
calculate the function based on x y and the changing z value F(x,y,z)
PSF=(abs(F)).^2;
% save images
imwrite(PSF, ['C:\Documents and Settings\User\My Documents\MATLAB\Deconvolution\Brenden\Deconvolution\Point Spread Function\PSF stack\' num2str(zloop) '.bmp'], 'bmp');
end
2 个评论
Paulo Silva
2011-7-14
just be careful not to add something that the OS won't allow for file names
[path string1 string2 ...]
更多回答(1 个)
the cyclist
2011-7-14
As the file input, create a string with the file name. For example,
filename = ['file',num2str(zloop),''];
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 String 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!