Subplot UIAxes app designer
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
app.UIFigure.AutoResizeChildren = 'off';
ax1 = subplot(1,2,1,'Parent',app.UIFigure);
ax2 = subplot(1,2,2,'Parent',app.UIFigure);
plot(ax1,[1 2 3 4])
plot(ax2,[10 9 4 7])
The problem is that I want to plot it in an axes component, not in a figure. Even if a try to this with i get an error like this:
No appropriate method, property, or field 'UIFigure' for class 'ts_proj'
What can I do?
1 Kommentar
Adam Danz
am 27 Dez. 2020
subplot() is supported in App Designer r2018b and later.
Documentation for r2018a and prior indicates its lack of suppor in app designer.
Antworten (1)
Sara Naranjo
am 2 Jun. 2019
Hello Eduardo, can yo solve this?? i`m having the same problem.
Thanks
Sara!
2 Kommentare
Wu Zhu
am 13 Apr. 2020
There are a lot of issues about Matlab updates on App designer. I acutally get away about this issue by plotting in a panel.
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!