Is there any function for running ginput in GUI?

2 views (last 30 days)
Dear All,
Is there any possibility to run ginput on the Axes in GUI writen in GUIDE to select a sub-space of a scatter plot?
Thank you in advance
  3 Comments
Adam Danz
Adam Danz on 26 Nov 2019
What does "alongside" mean in this case?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 26 Nov 2019

More Answers (1)

Mohammad Shahbazy
Mohammad Shahbazy on 27 Nov 2019
Edited: Walter Roberson on 6 Jan 2020
Thanks for your answers.
I want to plot data objects as a scatter plot and then select a sub-space of data by ginput and export the selected data from the plot. I am doing it properly outside of the GUI but in the GUI the code face with error (find the attached error). Also I can run it in an external figure as
figure(1);plot(X(:,1),X(:,2),'.'); ...
X = rand(1000,2);
plot(X(:,1),X(:,2),'.');
[x,y] = ginput(7);
  3 Comments
Walter Roberson
Walter Roberson on 24 Mar 2020
It appears that ginput is looking for a toolbar and not finding one.
Which MATLAB version are you using?
Mohammad Shahbazy
Mohammad Shahbazy on 24 Mar 2020
Edited: Mohammad Shahbazy on 24 Mar 2020
Walter, Thanks for your reply.
Fortunately, I have just solved the issue by finding a function here:
I use MATLAB ver. R2018b.

Sign in to comment.

Categories

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

Community Treasure Hunt

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

Start Hunting!