prompt line blocks access to figure
1 次查看(过去 30 天)
显示 更早的评论
hi
i have this code line:
...
plot(x,y)
prompt = 'Choose a number';
the problem is that i need to look in the plot at some points before using the prompt command. when i use the 'pause' command it also doesn't help because the pause is cancelled after one mouse click
is there an elegant way to solve this?
0 个评论
采纳的回答
Vishal Rane
2013-6-13
You could add a pushbutton to the plot figure or a dialog box maybe, indicating to the user that they can use that button/dialog box to continue execution when they are done staring at the plot.
4 个评论
Vishal Rane
2013-6-13
use this after the msgbox command
set(h,'Position',[400 400 100 50 ]) % [left bottom width height]
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!