Assigning names to variables automatically
이전 댓글 표시
I want to run a for loop that allows me to find an a range of months and years and give me the cell number they are in. But when I used find(), it doesnt assign it to a variable so I lose the cell number its in every time the for loop runs. So far I have this:
for i = 2009:2014
for j = [1 4 12]
tInd = find(y==i&m==j);
tInd_min = min(tInd)
tInd_max = max(tInd)
end
end
N = 36;
for k=1:N
for i = [2009 2010 2011 2012 2013 2014]
for j = [1 4 12]
my_field = strcat('v',num2str(k));
tInd = find(y==i&m==j);
tInd_min.(my_field) = min(tInd)
tInd_max.(my_field) = max(tInd)
end
end
end
Where the first one finds every index and spits it out. The second for loop assigns names to the variables wrong. Thanks in advance!
댓글 수: 1
Azzi Abdelmalek
2015년 7월 10일
This is not clear, post some data with expected result
답변 (1개)
Walter Roberson
2015년 7월 11일
Don't do that.
for k=1:N
for i = [2009 2010 2011 2012 2013 2014]
for j = [1 4 12]
tInd = find(y==i&m==j);
tInd_min(k) = min(tInd)
tInd_max(k) = max(tInd)
end
end
end
카테고리
도움말 센터 및 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!