Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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);

Risposta accettata

Voss
Voss il 7 Dic 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 Commenti
Ines Shekhovtsov
Ines Shekhovtsov il 9 Dic 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 il 9 Dic 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).

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by