Zooming in on generated graph in order to get input value for a prompt

6 views (last 30 days)
Hello,
I have a code that generates an EMG plot of three breathing attempts. After the plot code i have an input prompt that asks user to select closest x axis value for one of the chosen 3 attempts. This requires user to zoom in on generated plot. But i cannot seem to do that when the dialog box prompt comes up. Is there a way to be able to zoom in on generated graph to get value i need in a more elegant way??
my prompt code is:
prompt = {'What is the 0 point value of selected attept?'};
dlgtitle = 'Input';
answer = inputdlg(prompt,dlgtitle)
x=str2double(answer);

Accepted Answer

Voss
Voss on 7 Dec 2022
By default, inputdlg creates a modal dialog box (modal meaning no other figure/window can be interacted with while the modal one is up). To allow interactions with other figures/windows, change the inputdlg WindowStyle to 'normal' (this is done with the fifth input argument to inputdlg, so you also have to supply values for the third and fourth input arguments to inputdlg):
prompt = {'What is the 0 point value of selected attempt?'};
dlgtitle = 'Input';
answer = inputdlg(prompt,dlgtitle,1,{''},struct('WindowStyle','normal'))
x=str2double(answer);
  2 Comments
Ines Shekhovtsov
Ines Shekhovtsov on 9 Dec 2022
Thank you for your response. I had thought about using ginput as a more elegant approach and using a click vs reading a value from graph and input that in yourself. However ginput does not allow for zoom during it's execution. Do you have any idea on how i may go about accomplishing what i need using something similar to ginput??
Voss
Voss on 9 Dec 2022
Maybe datacursormode will be useful. The user can switch between zoom/pan/datacursor modes while looking for the correct point, and clicking on the line when datacursormode is on shows a datatip with the x and y values (also you can use the directional arrow keys to adjust the location of the datatip along the line).

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!