How to pause code till specific key is pressed?
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I want to do the following automatically:
- open figure
- select 2 datapoints with my mouse.
- read the index of those 2 datapoints, using the below code
dcm_obj = datacursormode(gcf);
info_struct = getCursorInfo(dcm_obj);
4. close figure
5. continue with the rest of the code.
Problem is, I don't know how to pause the script for it to wait till I finish selecting my datapoints.
I don't mind pressing a specific key after finish selecting the 2 datapoints.
THANK YOU!
0 个评论
回答(1 个)
thoughtGarden
2019-10-10
编辑:thoughtGarden
2019-10-10
Seems like you could do this more easily like this:
[x,y] = ginput(2);
This allows you to get the data for two locations before it continues with your script. No need to press a specific key after.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!