app designer UIAxes plot

app.Image.ImageSource = data;
hold(uiaxes,'on')
plot....
the code is above, I want to add a plot in the image, but how to determine the "UIAxes" ?
for help
thank you

1 Comment

lenwen - wouldn't you have added an uiaxes to your app and perhaps accessible via app.UiAxes?

Sign in to comment.

Answers (1)

Adam Danz
Adam Danz on 29 Apr 2020
Edited: Adam Danz on 4 May 2020
You have the right idea to specify an axis handle but it looks like you're not using the handle.
uiax = uiaxes(); % Create the UIAxes, store the handle.
hold(uiax, 'on') % specify the UIAxes
plot(uiax, x, y) % specify the UIAxes

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Asked:

on 29 Apr 2020

Edited:

on 4 May 2020

Community Treasure Hunt

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

Start Hunting!