Search code examples
matlabsavebrushautosave

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


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.


Solution

  • 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);