The inputdlg stays open
8 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
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.
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!