Change name of variable at each iteration of a for loop
이전 댓글 표시
I am using Matlab to do image processing on 3D image stacks. I am importing several image stacks at the same time, then doing work on them. I want to call the first image stack "bkg0" and the second "bkg1" etc. until I have imported all of the images. The number of images, however is variable depending on the data set that I've collected. Is it possible to do this?
The idea I want is something like this:
for i=1:size(ls,1);
bkg'num2str(i)'= load image;
end;
where each image is a 3d image stack, and the 'num2str(i)' section goes from 1 to the size of the listed data (ls).
Any ideas?
Kolbein
채택된 답변
추가 답변 (2개)
Walter Roberson
2012년 1월 16일
1 개 추천
aditya
2012년 1월 16일
0 개 추천
댓글 수: 1
Walter Roberson
2012년 1월 16일
I don't see how that will do anything useful at all for Kolbein ??
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!