app designer UIAxes plot

3 visualizzazioni (ultimi 30 giorni)
lenwen lin
lenwen lin il 29 Apr 2020
Modificato: Adam Danz il 4 Mag 2020
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 Commento
Geoff Hayes
Geoff Hayes il 29 Apr 2020
lenwen - wouldn't you have added an uiaxes to your app and perhaps accessible via app.UiAxes?

Accedi per commentare.

Risposte (1)

Adam Danz
Adam Danz il 29 Apr 2020
Modificato: Adam Danz il 4 Mag 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

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by