Filter löschen
Filter löschen

How to do cla reset UIAxes in ML2021a

56 Ansichten (letzte 30 Tage)
endystrike
endystrike am 12 Mai 2021
Bearbeitet: endystrike am 12 Mai 2021
Until MatLab 2020a I used to code this to reset the axes of a plot in AppDesigner code:
app.UIAxes.cla('reset');
but unfortunately in MatLab 2021a this command doesn't work anymore. How can I do the same in R2021a?
Thanks! :)

Akzeptierte Antwort

Adam Danz
Adam Danz am 12 Mai 2021
On what version of Matlab has that syntax ever worked? Even on regular axes, the error message appear.
fig = figure('Visible','off'); % visible=off to simplify the display
ax = axes(fig);
ax.cla
Unrecognized method, property, or field 'cla' for class 'matlab.graphics.axis.Axes'.
Instead, use
cla(app.UIAxes, 'reset')
  1 Kommentar
endystrike
endystrike am 12 Mai 2021
Bearbeitet: endystrike am 12 Mai 2021
cla(app.UIAxes, 'reset');
Adam your code works perfectly in 2021a, thanks a lot! :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Instrument Control Toolbox Supported Hardware finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by