How to brush the plot and then save the brushed data in GUI?

随声附和 提交于 2019-12-20 02:59:08

问题


I have read couple of posts on how to save brushed data, however, on trying the suggestions on these posts (this, this, this, this and this), none of them seem to be working. One of the problem I encountered while trying these suggestions is that the program runs all the way through the end before any data is brushed, and therefore, the saved data is an empty matrix.

My objectives are:

  1. Brush the data, and

  2. Save the brushed data.

This is what I tried from here but it didn't seem to work:

t=0:0.2:25; plot(t,sin(t),'.-');
brush on
hBrushLine = findall(gca,'tag','Brushing');
brushedData = get(hBrushLine, {'Xdata','Ydata'});
brushedIdx = ~isnan(brushedData{1});
brushedXData = brushedData{1}(brushedIdx);
brushedYData = brushedData{2}(brushedIdx);

Can someone show a simple example on how to do this? I am trying to do this in a GUI.


回答1:


Adding pause after brush on does the trick:

t=0:0.2:25; plot(t,sin(t),'.-');
brush on
pause
hBrushLine = findall(gca,'tag','Brushing');
brushedData = get(hBrushLine, {'Xdata','Ydata'});
brushedIdx = ~isnan(brushedData{1});
brushedXData = brushedData{1}(brushedIdx);
brushedYData = brushedData{2}(brushedIdx);



回答2:


I actually just answered this this morning.

Check out my answer to this question, and keep my comments in mind to my answer as well, I may have made a mistake in my original solution.

saving user input from uitable matlab GUI?

Hopefully it can help you too!

To summarize, add a waitfor(gcf); output=varToSave (make sure varToSave isn't from a handle/object about to be deleted) where output is the output returned from your GUI function.



来源:https://stackoverflow.com/questions/17325205/how-to-brush-the-plot-and-then-save-the-brushed-data-in-gui

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!