The inputdlg stays open

7 次查看(过去 30 天)
Ole
Ole 2017-8-6
I would like to to have an input window and have the ability to change the input data. The code below uses inputdlg.
The problem is that the graph is not accessible. Is there a way to have access to the graph and to change the input values easily.
while (true)
% block of code here
prompt = {'X from','X to','Y from','Y to'};
promptname = 'test';
numlines = 50;
options.Resize='on';
defaultanswer = {'1', '5', '2', '10'};
answer = inputdlg(prompt, promptname,[1 numlines],defaultanswer, options);
xx = [str2num(char(answer(1))), str2num(char(answer(2)))];
xy = [str2num(char(answer(3))), str2num(char(answer(4)))];
plot(xx,xy)
pause(0.1) ; % allow for ctrl-c
end
I can request a key to be pressed (code from another answer). But is there a way to have both accessible without writing a gui.
currkey=0;
% do not move on until enter key is pressed
while currkey~=1
pause; % wait for a keypress
currkey=get(gcf,'CurrentKey');
if strcmp(currkey, 'return') % You also want to use strcmp here.
currkey=1 % Error was here; the "==" should be "="
else
currkey=0 % Error was here; the "==" should be "="
end
end
  2 个评论
Walter Roberson
Walter Roberson 2017-8-6
Could you expand on what you mean by "the graph is not accessible" ?
Ole
Ole 2017-8-7
编辑:Ole 2017-8-7
The window of the graph can not be manipulated (can not be saved the menus are not active because the focus is on the input window). The graph can not be dragged with the mouse also.

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2017-8-7
inputdlg() is a model dialog box and you have it in a permanent loop where is keeps calling inputdlg forever so it never goes away or lets you interact with anything else. Learn how to create a regular GUI with edit fields. See http://blogs.mathworks.com/videos/category/gui-or-guide/ Then have a button where you push it to plot data and the callback for that button will get the numbers from the edit fields. It's trivial.

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by