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!