Infinite for loop getting stuck. Creating a new column containing a variable.
이전 댓글 표시
Hi, I am trying to generate a new column variable within a table which is conditional on 2 other values. The for loop I am using to generate it is getting stuck, however. It is generating the right values for me but just gets stuck and goes through the column over and over again. Any help would be appreciated:
data.signal = zeros(size(data.NAPMPMIIndex));
for indx=1:numel(data.NAPMPMIIndex)
if(data.NAPMPMIIndex(indx) > 50 & data.AboveMA(indx)> 0.5)
data.signal(indx) = 0.5
elseif(data.NAPMPMIIndex(indx) > 50 & data.AboveMA(indx)< 0.5)
data.signal(indx) = -0.5
elseif(data.NAPMPMIIndex(indx) < 50 & data.AboveMA(indx)> 0.5)
data.signal(indx) = 1
else
data.signal(indx) = -1;
end
end
댓글 수: 10
dpb
2019년 8월 27일
What does
size(data.NAPMPMIIndex)
return? Your loop operates over all the elements of that array you created of that size, not just a column...perhaps it's just a lot more than you bargained for.
There's nothing in the above code snippet that is infinite--possibly numel(data.NAPMPMIIndex) is quite large, but it would finish eventually as long as you don't run out of memory.
There's other code we can't see obviously because otherwise have undefined variables but this isn't the problem.
The above assignments code be done w/o looping or explicit if...elseif by use of logical indexing.
nskel
2019년 8월 27일
Adam Danz
2019년 8월 27일
Any chance we could run the code (ie, attach a mat file with all needed variables)?
dpb
2019년 8월 27일
Build the array then assign to the table...
signal = zeros(size(data.NAPMPMIIndex));
indx=(data.NAPMPMIIndex(indx)>50) & (data.AboveMA(indx)>0.5);
signal(indx) = 0.5;
indx=(data.NAPMPMIIndex(indx)>50) & (data.AboveMA(indx)<0.5);
signal(indx) = -0.5;
indx=(data.NAPMPMIIndex(indx)<50) & (data.AboveMA(indx)>0.5);
signal(indx) = 1;
indx=(data.NAPMPMIIndex(indx)<50) & (data.AboveMA(indx)<0.5);
signal(indx) = -1;
data.signal(indx) =signal;
NB: You have no assignment for the case of ==50 or ==0.5
The above could be shortened somewhat by use of logical relation and calculated result for the second condition to flip sign but just translated existing logic directly verbatim.
Cris LaPierre
2019년 8월 27일
"NB: You have no assignment for the case of ==50 or ==0.5"
Actually, the else should cover all scenarios not specifically called out by one of the conditional expressions.
nskel
2019년 8월 29일
dpb
2019년 8월 29일
It is working; you just left off the trailing ";" after a couple of the assignment lines in the code so it's doing as you ask and echoing the whole table out each iteration that one of those conditionals is executed.
Add the missing semicolons and all will be quiet...
Adam Danz
2019년 8월 29일
I ran the code in your question using the data attached to your comment above. The loop is not getting stuck nor is it repeating the same column as you described. The loop runs as it should.
To confirm that, run this version below. The the only differences are
- semicolons are used to suppress unnecessary output.
- a counter "c" is used to count each iteration of the for-loop and the count is displayed so you can visually confirm that the loop has the expected 714 iterations.
load spxpmi2
data.signal = zeros(size(data.NAPMPMIIndex));
c = 0;
for indx=1:714
c = c+1;
disp(c)
if(data.NAPMPMIIndex(indx) > 50 & data.AboveMA(indx)> 0.5)
data.signal(indx) = 0.5;
elseif(data.NAPMPMIIndex(indx) > 50 & data.AboveMA(indx)< 0.5)
data.signal(indx) = -0.5;
elseif(data.NAPMPMIIndex(indx) < 50 & data.AboveMA(indx)> 0.5)
data.signal(indx) = 1;
else
data.signal(indx) = -1;
end
end
nskel
2019년 8월 29일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Historical Contests에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!