Strange behaviour with impoint()
조회 수: 1 (최근 30일)
이전 댓글 표시
I need to manually mark data points that weren't detected by my algorithm. So I have been trying to use impoint() and when it works, it's great.
The problem is that, occasionally, when I click anywhere in the plot, the marker jumps a centimetre below to where I have clicked. And it continues to jump around everywhere you click. You can never actually double-click the point to confirm, because it just jumps away from your cursor like a game of tag.
This occurs very inconsistently and I can't figure out what part of the script is relevant to the error, but here's the part immediately surrounding impoint().
plot (breath)
hold on
for i = 1:numAcc
plot(inhale{i,2},breath(round(inhale{i,2})),'rx',inhale{i,1},breath(round(inhale{i,1})),'gx')
end
set(gcf, 'Position', [0, 250, width, 600])
corInhaleBegin = impoint(gca,[]);
getPosition(corInhaleBegin);
accepted_pos1 = wait(corInhaleBegin);
resume(corInhaleBegin);
correctedBreath(corCount,:) = {accepted_pos1};
close
Edit: When I comment this line
set(gcf, 'Position', [0, 250, width, 600])
the problem goes away. Does anyone know why this is? It saves me a lot of clicking and dragging if I can have the window appear at this size so I regret having to comment it.
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Particle Swarm에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!