Selecting data from a plot in a GUI

179 次查看(过去 30 天)
Michael
Michael 2011-7-12
回答: Andy 2015-1-28
I have a plot on my GUI and I want to select some points on this plot and save their coordinates to a variable. The variable would have rows containing each point and 2 columns for the x,y values for those points.
I have tried using the brush function to select the data and then save it to a variable, but that is giving me problems.
Any other ideas?
Thanks!

回答(3 个)

Fangjun Jiang
Fangjun Jiang 2011-7-12
plot(magic(5));
[x,y]=ginput
You can select multiple data points, Press return when you are done.
  3 个评论
Fangjun Jiang
Fangjun Jiang 2011-7-12
I am not aware of any function for that. You could develop some code to do that since you have the original data for the curve. For example, use [x,y]=ginput(2) to get two data points, then you can select all the data points that is fallen between x(1)<x<x(2) and y(1)<y<y(2).
Michael
Michael 2011-7-12
That worked great. Thanks so much!

请先登录,再进行评论。


Fangjun Jiang
Fangjun Jiang 2011-7-13
Michael, I've been thinking about this problem. You can use Brush on your plot. Click the "Brush" icon, select a group of data points, then select the highlighted data point and right click, you can select "Create Variable" which then will ask you for a variable name. Or, you can select "Copy Data to Clipboard", then in the Command window, you can type MyData=clipboard('paste'). Does this satisfy your need, or you need more formal API to use the Brush functionality? There is a lead in this post but I have not found an API for Brush yet.

Andy
Andy 2015-1-28
An excellent option is provided below:
hBrushLine = findall(gca,'tag','Brushing');
brushedData = get(hBrushLine, {'Xdata','Ydata'});
brushedIdx = ~isnan(brushedData{1});
brushedXData = brushedData{1}(brushedIdx);
brushedYData = brushedData{2}(brushedIdx);
% and similarly for ZData in 3D plots

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by