Effacer les filtres
Effacer les filtres

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

12 vues (au cours des 30 derniers jours)
meryem berrada
meryem berrada le 29 Nov 2021
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 commentaires
Edwin Henry Jara Bardales
Edwin Henry Jara Bardales le 29 Déc 2022
It seems that even for R2022a, it is not available to compile the brush option. I have the same problem @MathWorks Support Team
Ziad Sliti
Ziad Sliti le 16 Jan 2023
Nether in 2023a prerelease.

Connectez-vous pour commenter.

Réponses (3)

Shinya Maruyama
Shinya Maruyama le 3 Mar 2023
Modifié(e) : Shinya Maruyama le 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 commentaires
John H.
John H. le 18 Avr 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 le 18 Avr 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.

Connectez-vous pour commenter.


Jigar
Jigar le 11 Août 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?

RGB85
RGB85 le 2 Mai 2024
I'm having the same issue and am not able to get Shinya's method to work either. I've built a number of data processing applications for my lab group that are now essentially non-functional in the compiled environment. Are there any plans to fix this issue in future releases? Does anyone else have a workaround?

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by