UIAxes - Remove Brushed Data through button click Callback.

조회 수: 12 (최근 30일)
Jordan
Jordan 2023년 9월 4일
답변: Mario Malic 2023년 9월 6일
I have an app in app designer that containes a UIAxes in 2023a.
I currently enable the brush data function though a button click to allow user selection. Is it possible to use the "Remove Data" or "Replace with NANs" functionality that is normally accessed via a right click on the selected data, through a button click callback?
I'm unsure how to access the functionality in the code.
Thanks
  댓글 수: 8
Mario Malic
Mario Malic 2023년 9월 6일
Or you want to remove the brushed data without using the context menu, but using a button or something else?
Jordan
Jordan 2023년 9월 6일
Hi Mario, more the latter here. So I want to remove brushed data without using the context menu, but using a button instead. More just to improve user experience than anything.

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

채택된 답변

Mario Malic
Mario Malic 2023년 9월 6일
Here is an example of setting brushed data to NaNs, now you have to incorporate this in the callback.
fig = uifigure();
ax = uiaxes(fig);
t = 0:0.1:1;
y = sin(2*pi*t);
h = plot(ax, t, y, '-r');
hold (ax, "on");
h2 = plot(ax, t, 2*y, '-g');
% Uncomment after brushing data
% idx = logical(h.BrushData)
% h.YData(idx) = nan;
% h2.YData(idx) = nan;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by