Markers on UIAxes in App Designer
12 ビュー (過去 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')
0 件のコメント
回答 (2 件)
J. Alex Lee
2023 年 1 月 10 日
you probably need to issue plot commands specifying "parent" as the app.UIAxes
0 件のコメント
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)
0 件のコメント
参考
カテゴリ
Help Center および File 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!