필터 지우기
필터 지우기

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

조회 수: 15 (최근 30일)
meryem berrada
meryem berrada 2021년 11월 29일
답변: RGB85 2024년 5월 2일
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
Edwin Henry Jara Bardales
Edwin Henry Jara Bardales 2022년 12월 29일
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 2023년 1월 16일
Nether in 2023a prerelease.

댓글을 달려면 로그인하십시오.

답변 (3개)

Shinya Maruyama
Shinya Maruyama 2023년 3월 3일
편집: Shinya Maruyama 2023년 3월 3일
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
John H.
John H. 2023년 4월 18일
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 2023년 4월 18일
@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.

댓글을 달려면 로그인하십시오.


Jigar
Jigar 2023년 8월 11일
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 2024년 5월 2일
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?

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by