How to remove Icons from legend.
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Brandon Bush
am 17 Jul. 2018
Bearbeitet: Brandon Bush
am 17 Jul. 2018

Here I have a legend and I would like to remove the bubble and regression line icons as well as display a third item.
legend(['Corr = ',num2str(C)], [' RMSE = ',num2str(R)], [' Bias = ', num2str(B)])
This is the code I used to make the legend. If it cannot be done, is there a way to display my three values on the graph in a vertical orientation?
2 Kommentare
Geoff Hayes
am 17 Jul. 2018
Brandon - if you were able to remove the bubble (circle?) and line "icon" from the legend, then how would you know which legend entry corresponds to which plot on your figure?
Also, please clarify what you mean by display my three values on the graph in a vertical orientation. One follows the other in a column so how is this different from a "vertical orietation"?
Akzeptierte Antwort
jonas
am 17 Jul. 2018
You are creating a problem by trying to display results in the legend, which is not what it is intended for.
Use an textbox instead.
annotation('textbox',dim,'String',str,'FitBoxToText','on');
Just add a newline character after every entry, e.g.
str=['corr = ',num2str(C),newline,'RMSE = ',num2str(RMSE)]
3 Kommentare
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!