Markers on UIAxes in App Designer

15 次查看(过去 30 天)
Hello i have issue to put markers on UIAxes in App Designer after i press button, opens new figure and markers puts on blank not the image. Thank you for your time.
imshow(a,'Parent', app.UIAxes);
[y, x] = ind2sub(szref,holeidx(plugismissing0));
plot(x,y,'o','linewidth',3,'markersize',10, 'color', 'B')
[y, x] = ind2sub(szref,holeidx(plugismisplaced0));
plot(x,y,'x','linewidth',3,'markersize',10, 'color', 'R')

回答(2 个)

J. Alex Lee
J. Alex Lee 2023-1-10
you probably need to issue plot commands specifying "parent" as the app.UIAxes

Walter Roberson
Walter Roberson 2023-1-10
When you do not tell plot() which axes to display into, then it will call gca() to find the current axes. gca() will not look for axes whose handle visibility is turned off, but by default handle visibility is off for all uiaxes in app designer.
You need to either turn on handle visibility for the target axes and make it the current axes (not recommended), or else you have to pass the target axes to plot() (recommended)

类别

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