change legend name of ROC
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to change the legend name (class1, class2, ...) of ROC when using
plotroc(Ts,Y)
0 Commenti
Risposta accettata
KSSV
il 15 Set 2022
plotroc(Ts,Y)
hLegend = findobj(gcf, 'Type', 'Legend');
%get text
hLegend.String
% Change
hLegend.String {'One' 'Two' 'Three'} % put your strings here; I assume three are there
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Legend 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!