Is the brush tool available in compiled app via Matlab 2021b ?

9 views (last 30 days)
Hello,
A section of the app that I created required the brush tool to be manually selected by the user on one of the figures displayed. I noticed that the brush tool is not visible once I compile the app. Am I correctly assuming that the tool is still not available in 2021b ? Or is there another way to call the tool ?
This is what I have on MatLab:
% Button pushed function: RemoveBrushedDataButton
function RemoveBrushedDataButtonPushed(app, event)
%remove brushed values from plot
app.BD = evalin('base','brushedData'); %get brushedData variable from base workspace
app.data1 = ismember(app.data,app.BD); %identify section of data that matches brushedData
app.data(app.data1) = NaN; %remove that section
% plot of data
app.figure1;
ax1 = app.figure1;
cla(ax1)
plot(ax1,app.data,'.b');
hold(ax1,'on');
end
So the code is using a variable named "brushedData" that is created by extracting highlighted data using the brush tool. Would there be another way to do this ?
Any help is appreciated, thank you!
  4 Comments
Edwin Henry Jara Bardales
Edwin Henry Jara Bardales on 29 Dec 2022
It seems that even for R2022a, it is not available to compile the brush option. I have the same problem @MathWorks Support Team

Sign in to comment.

Answers (2)

Shinya Maruyama
Shinya Maruyama on 3 Mar 2023
Edited: Shinya Maruyama on 3 Mar 2023
I have found a way to use the Brush tool on UIAxes in the appdesigner distribution app, including in the compilation, and have confirmed this with R2020b Update 8.
The point is to put a description in your mlapp that creates an instance of the Brush tool. This means the following:
function BrushButtonDown(app, event)
b = brush(app.UIAxes);
b.Enable = 'on';
% brush(app.UIAxes, 'on'); % this does not work on the distribution app.
end
On any distribution compiled app, the following icon settings seem to be ignored for UIAxes. So you need to prepare a callback to enable the functionality from the brush instance.
axtoolbar(app.UIAxes, {'zoomin', 'zoomout', 'rotate', 'restoreview', 'pan', 'datacursor', 'brush', 'export'});
I have created an instance in the form of a property variable in the startupFcn() like this:
function startupFcn(app)
app.Brush = brush(app.UIAxes);
end
...
function SelectToolButtonDown(app, event)
app.Brush.Enable = 'on';
end
If I just call brush() without creating an instance, the function may not be compiled, or the Brush icon is temporarily displayed but not in selection mode.
  6 Comments
John H.
John H. on 18 Apr 2023
man this is so annoying... i just want to be able to brush my data, lol
if you have a chance to verify on windows verses mac id appreciate it.
At least that would give me an inconsistent operation argument between OS's to submit to the the support team.
To be clear, i did not get the proper functionality in appdesigner, i didnt compile it yet. i figure if it doesnt work as an mlapp its not going to work as an exe .
Shinya Maruyama
Shinya Maruyama on 18 Apr 2023
@John H. Unfortunately, it worked on Windows in my environment. I wonder what is wrong with you? I hope it works.
My environment is Matlab R2020b Update8 Windows 10 Pro 21H2.

Sign in to comment.


Jigar
Jigar on 11 Aug 2023
i have the same issue, looking for an interactive cursor. The brush works while running inside matlab but after compiling, it doesn't show. I have tried Shinya's method and it doesn't work. I am using 2022a on windows 11. Can someone help?

Categories

Find more on Develop Apps Using App Designer 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!