How can I set "legend" and "text" to an UIAxes? (app designer)
61 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Giulia Di Giorgio
am 12 Mär. 2023
Kommentiert: Giulia Di Giorgio
am 12 Mär. 2023
Hello, which functions can I use to include legend and text in my App plot? The version for regular code is this one:
legend('datos','ajuste',"location","best");text(10,0.155,strcat('R²= ',Rcuadrado))
0 Kommentare
Akzeptierte Antwort
Cameron
am 12 Mär. 2023
Bearbeitet: Cameron
am 12 Mär. 2023
You need to specify the axes within App Designer. Try this:
%use whatever your UIAxes name is. I assumed it was app.UIAxes
legend(app.UIAxes,'datos','ajuste',"location","best");
text(app.UIAxes,10,0.155,strcat('R²= ',Rcuadrado))
3 Kommentare
Voss
am 12 Mär. 2023
The text is placed at the point (10,0.155). The point (10,0.155) is outside the limits of the axes. That's why you don't see the text.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Legend 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!